750 lines
27 KiB
JSON
750 lines
27 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SwayNotificationCenter JSON schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"$schema": {
|
|
"type": "string",
|
|
"description": "Pointer to the schema against which this document should be validated."
|
|
},
|
|
"ignore-gtk-theme": {
|
|
"type": "boolean",
|
|
"description": "Unsets the GTK_THEME environment variable, fixing a lot of issues with GTK themes ruining the users custom CSS themes.",
|
|
"default": true
|
|
},
|
|
"positionX": {
|
|
"type": "string",
|
|
"description": "Horizontal position of control center and notification window",
|
|
"default": "right",
|
|
"enum": ["right", "left", "center"]
|
|
},
|
|
"layer": {
|
|
"type": "string",
|
|
"description": "Layer of notification window",
|
|
"default": "overlay",
|
|
"enum": ["background", "bottom", "top", "overlay"]
|
|
},
|
|
"layer-shell": {
|
|
"type": "boolean",
|
|
"description": "Whether or not the windows should be opened as layer-shell surfaces. Note: Requires swaync restart to apply",
|
|
"default": true
|
|
},
|
|
"layer-shell-cover-screen": {
|
|
"type": "boolean",
|
|
"description": "Whether or not the windows should cover the whole screen when layer-shell is used. May exceed the height of the monitor if the value is too large. Fixes animations in compositors like Hyprland.",
|
|
"default": true
|
|
},
|
|
"cssPriority": {
|
|
"type": "string",
|
|
"description": "Which GTK priority to use when loading the default and user CSS files. Pick \"user\" to override XDG_CONFIG_HOME/gtk-4.0/gtk.css",
|
|
"default": "highest",
|
|
"enum": ["application", "user"]
|
|
},
|
|
"positionY": {
|
|
"type": "string",
|
|
"description": "Vertical position of control center and notification window",
|
|
"default": "top",
|
|
"enum": ["top", "center", "bottom"]
|
|
},
|
|
"control-center-positionX": {
|
|
"type": "string",
|
|
"description": "Optional: Horizontal position of the control center. Supersedes positionX if not set to `none`",
|
|
"default": "none",
|
|
"enum": ["right", "left", "center", "none"]
|
|
},
|
|
"control-center-positionY": {
|
|
"type": "string",
|
|
"description": "Optional: Vertical position of the control center. Supersedes positionY if not set to `none`",
|
|
"default": "none",
|
|
"enum": ["top", "bottom", "none"]
|
|
},
|
|
"control-center-margin-top": {
|
|
"type": "integer",
|
|
"description": "The margin (in pixels) at the top of the control center. 0 to disable",
|
|
"default": 0
|
|
},
|
|
"control-center-margin-bottom": {
|
|
"type": "integer",
|
|
"description": "The margin (in pixels) at the bottom of the control center. 0 to disable",
|
|
"default": 0
|
|
},
|
|
"control-center-margin-right": {
|
|
"type": "integer",
|
|
"description": "The margin (in pixels) at the right of the control center. 0 to disable",
|
|
"default": 0
|
|
},
|
|
"control-center-margin-left": {
|
|
"type": "integer",
|
|
"description": "The margin (in pixels) at the left of the control center. 0 to disable",
|
|
"default": 0
|
|
},
|
|
"control-center-layer": {
|
|
"type": "string",
|
|
"description": "Layer of control center window",
|
|
"default": "none",
|
|
"enum": ["background", "bottom", "top", "overlay", "none"]
|
|
},
|
|
"control-center-exclusive-zone": {
|
|
"type": "boolean",
|
|
"description": "Whether or not the control center should follow the compositors exclusive zones. An example would be setting it to \"false\" to cover your panel/dock.",
|
|
"default": true
|
|
},
|
|
"notification-2fa-action": {
|
|
"type": "boolean",
|
|
"description": "If each notification should display a 'COPY \"1234\"' action",
|
|
"default": true
|
|
},
|
|
"notification-inline-replies": {
|
|
"type": "boolean",
|
|
"description": "If notifications should display a text field to reply if the sender requests it. NOTE: Replying in popup notifications is only available if the compositor supports GTK Layer-Shell ON_DEMAND keyboard interactivity.",
|
|
"default": false
|
|
},
|
|
"notification-icon-size": {
|
|
"type": "integer",
|
|
"deprecated": true,
|
|
"description": "deprecated (change the CSS root variable \"--notification-icon-size\"): The notification icon size (in pixels). The app icon size is 1/3",
|
|
"default": -1
|
|
},
|
|
"notification-body-image-height": {
|
|
"type": "integer",
|
|
"description": "The notification body image height (in pixels)",
|
|
"default": 100,
|
|
"minimum": 100
|
|
},
|
|
"notification-body-image-width": {
|
|
"type": "integer",
|
|
"description": "The notification body image width (in pixels)",
|
|
"default": 200,
|
|
"minimum": 200
|
|
},
|
|
"timeout": {
|
|
"type": "integer",
|
|
"description": "The notification timeout for notifications with normal priority",
|
|
"default": 10
|
|
},
|
|
"timeout-low": {
|
|
"type": "integer",
|
|
"description": "The notification timeout for notifications with low priority",
|
|
"default": 5
|
|
},
|
|
"timeout-critical": {
|
|
"type": "integer",
|
|
"description": "The notification timeout for notifications with critical priority. 0 to disable",
|
|
"default": 0
|
|
},
|
|
"notification-window-width": {
|
|
"type": "integer",
|
|
"description": "Width of the notification in pixels",
|
|
"default": 500
|
|
},
|
|
"notification-window-height": {
|
|
"type": "integer",
|
|
"description": "Max height of the notification in pixels. -1 to use the full amount of space given by the compositor.",
|
|
"default": -1
|
|
},
|
|
"notification-window-preferred-output": {
|
|
"type": "string",
|
|
"description": "The preferred output to open the notification window (popup notifications). Can either be the monitor connector name (ex: \"DP-1\"), or the full name, manufacturer model serial (ex: \"Acer Technologies XV272U V 503023B314202\"). If the output is not found, the currently focused one is picked"
|
|
},
|
|
"fit-to-screen": {
|
|
"type": "boolean",
|
|
"description": "If the control center should expand to both edges of the screen",
|
|
"default": true
|
|
},
|
|
"relative-timestamps": {
|
|
"type": "boolean",
|
|
"description": "Display notification timestamps relative to now e.g. \"26 minutes ago\". If false, a local iso8601-formatted absolute timestamp is displayed.",
|
|
"default": true
|
|
},
|
|
"control-center-height": {
|
|
"type": "integer",
|
|
"description": "Height of the control center in pixels. A value of -1 means that it will fit to the content. Ignored when 'fit-to-screen' is set to 'true'. Also limited to the height of the monitor, unless 'layer-shell-cover-screen' is set to false.",
|
|
"default": 500,
|
|
"minimum": -1
|
|
},
|
|
"control-center-width": {
|
|
"type": "integer",
|
|
"description": "Width of the control center in pixels",
|
|
"default": 500,
|
|
"minimum": 300
|
|
},
|
|
"control-center-preferred-output": {
|
|
"type": "string",
|
|
"description": "The preferred output to open the control center. Can either be the monitor connector name (ex: \"DP-1\"), or the full name, manufacturer model serial (ex: \"Acer Technologies XV272U V 503023B314202\"). If the output is not found, the currently focused one is picked"
|
|
},
|
|
"keyboard-shortcuts": {
|
|
"type": "boolean",
|
|
"description": "If control center should use keyboard shortcuts",
|
|
"default": true
|
|
},
|
|
"notification-grouping": {
|
|
"type": "boolean",
|
|
"description": "If notifications should be grouped by app name",
|
|
"default": true
|
|
},
|
|
"image-visibility": {
|
|
"type": "string",
|
|
"description": "The notification image visibility when no icon is available.",
|
|
"default": "when-available",
|
|
"enum": ["always", "when-available", "never"]
|
|
},
|
|
"transition-time": {
|
|
"type": "integer",
|
|
"description": "The notification animation duration. 0 to disable",
|
|
"default": 200
|
|
},
|
|
"hide-on-clear": {
|
|
"type": "boolean",
|
|
"description": "Hides the control center after pressing \"Clear All\"",
|
|
"default": false
|
|
},
|
|
"hide-on-action": {
|
|
"type": "boolean",
|
|
"description": "Hides the control center when clicking on notification action",
|
|
"default": true
|
|
},
|
|
"text-empty": {
|
|
"type": "string",
|
|
"description": "Text that appears when there are no notifications to show",
|
|
"default": "No Notifications"
|
|
},
|
|
"script-fail-notify": {
|
|
"type": "boolean",
|
|
"description": "Sends a notification if a script fails to run",
|
|
"default": true
|
|
},
|
|
"scripts": {
|
|
"type": "object",
|
|
"description": "Which scripts to check and potentially run for every notification. If the notification doesn't include one of the properties, that property will be ignored. All properties (except for exec) use regex. If all properties match the given notification, the script will be run. Only the first matching script will be run.",
|
|
"minProperties": 1,
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^.{1,}$": {
|
|
"type": "object",
|
|
"description": "Your script object.",
|
|
"required": ["exec"],
|
|
"minProperties": 2,
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"exec": {
|
|
"type": "string",
|
|
"description": "The script to run. Can also run regular shell commands."
|
|
},
|
|
"app-name": {
|
|
"type": "string",
|
|
"description": "The app-name. Uses Regex."
|
|
},
|
|
"desktop-entry": {
|
|
"type": "string",
|
|
"description": "The desktop-entry. Uses Regex."
|
|
},
|
|
"summary": {
|
|
"type": "string",
|
|
"description": "The summary of the notification. Uses Regex."
|
|
},
|
|
"body": {
|
|
"type": "string",
|
|
"description": "The body of the notification. Uses Regex."
|
|
},
|
|
"urgency": {
|
|
"type": "string",
|
|
"description": "The urgency of the notification.",
|
|
"default": "Normal",
|
|
"enum": ["Low", "Normal", "Critical"]
|
|
},
|
|
"category": {
|
|
"type": "string",
|
|
"description": "Which category the notification belongs to. Uses Regex."
|
|
},
|
|
"sound-file": {
|
|
"type": "string",
|
|
"description": "Which sound file the notification requested. Uses Regex."
|
|
},
|
|
"sound-name": {
|
|
"type": "string",
|
|
"description": "Which sound name the notification requested. Uses Regex."
|
|
},
|
|
"run-on": {
|
|
"type": "string",
|
|
"description": "Whether to run the script on an action being activated, or when the notification is received.",
|
|
"enum": ["action", "receive"],
|
|
"default": "receive"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"notification-visibility": {
|
|
"type": "object",
|
|
"description": "Set the visibility of each incoming notification. If the notification doesn't include one of the properties, that property will be ignored. All properties (except for state) use regex. If all properties match the given notification, the notification will be follow the provided state. Only the first matching object will be used.",
|
|
"minProperties": 1,
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^.{1,}$": {
|
|
"type": "object",
|
|
"description": "Your script object.",
|
|
"required": ["state"],
|
|
"minProperties": 2,
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"state": {
|
|
"type": "string",
|
|
"description": "The notification visibility state.",
|
|
"default": "enabled",
|
|
"enum": ["ignored", "muted", "enabled", "transient"]
|
|
},
|
|
"app-name": {
|
|
"type": "string",
|
|
"description": "The app-name. Uses Regex."
|
|
},
|
|
"desktop-entry": {
|
|
"type": "string",
|
|
"description": "The desktop-entry. Uses Regex."
|
|
},
|
|
"summary": {
|
|
"type": "string",
|
|
"description": "The summary of the notification. Uses Regex."
|
|
},
|
|
"body": {
|
|
"type": "string",
|
|
"description": "The body of the notification. Uses Regex."
|
|
},
|
|
"urgency": {
|
|
"type": "string",
|
|
"description": "The urgency of the notification.",
|
|
"default": "Normal",
|
|
"enum": ["Low", "Normal", "Critical"]
|
|
},
|
|
"override-urgency": {
|
|
"type": "string",
|
|
"description": "The new urgency of the notification (optional)",
|
|
"default": "unset",
|
|
"enum": ["unset", "low", "normal", "critical"]
|
|
},
|
|
"category": {
|
|
"type": "string",
|
|
"description": "Which category the notification belongs to. Uses Regex."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"widgets": {
|
|
"type": "array",
|
|
"uniqueItems": true,
|
|
"description": "Which order and which widgets to display. If the \"notifications\" widget isn't specified, it will be placed at the bottom.",
|
|
"default": ["inhibitors", "title", "dnd", "notifications"],
|
|
"items": {
|
|
"type": "string",
|
|
"$comment": "Sadly can't use regex and enums at the same time. Fix in the future?",
|
|
"pattern": "^[a-zA-Z0-9_-]{1,}(#[a-zA-Z0-9_-]{1,}){0,1}?$"
|
|
}
|
|
},
|
|
"widget-config": {
|
|
"type": "object",
|
|
"description": "Configure specific widget properties.",
|
|
"additionalProperties": false,
|
|
"$comment": "New widgets go here in \"patternProperties\" ↓",
|
|
"patternProperties": {
|
|
"notifications": {
|
|
"$comment": "References the widget structure from \"widgets\" below",
|
|
"$ref": "#/widgets/notifications"
|
|
},
|
|
"^title(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$comment": "References the widget structure from \"widgets\" below",
|
|
"$ref": "#/widgets/title"
|
|
},
|
|
"^dnd(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/dnd"
|
|
},
|
|
"^label(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/label"
|
|
},
|
|
"^mpris(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/mpris"
|
|
},
|
|
"^buttons-grid(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/buttons-grid"
|
|
},
|
|
"^menubar(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/menubar"
|
|
},
|
|
"^slider(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/slider"
|
|
},
|
|
"^volume(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/volume"
|
|
},
|
|
"^backlight(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$ref": "#/widgets/backlight"
|
|
},
|
|
"^inhibitors(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"$comment": "References the widget structure from \"widgets\" below",
|
|
"$ref": "#/widgets/inhibitors"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"widgets": {
|
|
"$comment": "New widgets go here",
|
|
"notifications": {
|
|
"type": "object",
|
|
"description": "Control Center Title Widget",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"vexpand": {
|
|
"type": "boolean",
|
|
"description": "Whether or not the notifications widget should vertically expand or not",
|
|
"default": true
|
|
}
|
|
}
|
|
},
|
|
"title": {
|
|
"type": "object",
|
|
"description": "Control Center Title Widget",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"description": "The title of the widget",
|
|
"default": "Notifications"
|
|
},
|
|
"clear-all-button": {
|
|
"type": "boolean",
|
|
"description": "Whether to display a \"Clear All\" button",
|
|
"default": true
|
|
},
|
|
"button-text": {
|
|
"type": "string",
|
|
"description": "\"Clear All\" button text",
|
|
"default": "Clear All"
|
|
}
|
|
}
|
|
},
|
|
"dnd": {
|
|
"type": "object",
|
|
"description": "Control Center Do Not Disturb Widget",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"description": "The title of the widget",
|
|
"default": "Do Not Disturb"
|
|
}
|
|
}
|
|
},
|
|
"label": {
|
|
"type": "object",
|
|
"description": "A generic widget that allows the user to add custom text",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"description": "The text content of the widget",
|
|
"default": "Label Text"
|
|
},
|
|
"max-lines": {
|
|
"type": "integer",
|
|
"description": "The maximum lines",
|
|
"default": 5
|
|
}
|
|
}
|
|
},
|
|
"mpris": {
|
|
"type": "object",
|
|
"description": "A widget that displays multiple music players",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"image-size": {
|
|
"type": "integer",
|
|
"deprecated": true,
|
|
"description": "deprecated (change the CSS root variable \"--mpris-album-art-icon-size\"): The size of the album art",
|
|
"default": -1
|
|
},
|
|
"show-album-art": {
|
|
"type": "string",
|
|
"description": "Whether or not the album art should be hidden, always visible, or only visible when a valid album art is provided.",
|
|
"default": "always",
|
|
"enum": ["always", "when-available", "never"]
|
|
},
|
|
"autohide": {
|
|
"type": "boolean",
|
|
"description": "Whether to hide the widget when the player has no metadata.",
|
|
"default": false
|
|
},
|
|
"blacklist": {
|
|
"type": "array",
|
|
"description": "Audio sources for the mpris widget to ignore.",
|
|
"items": {
|
|
"type": "string",
|
|
"description": "Audio source/app name. Regex allowed."
|
|
}
|
|
},
|
|
"loop-carousel": {
|
|
"type": "boolean",
|
|
"description": "Whether to loop through the mpris carousel.",
|
|
"default": "false"
|
|
}
|
|
}
|
|
},
|
|
"buttons-grid": {
|
|
"type": "object",
|
|
"description": "A widget to add a grid of buttons that execute shell commands",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"buttons-per-row": {
|
|
"type": "number",
|
|
"description": "How many buttons should be shown in a buttons-grid row"
|
|
},
|
|
"actions": {
|
|
"type": "array",
|
|
"description": "A list of actions containing a label and a command",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"description": "Text to be displayed in button",
|
|
"default": "label"
|
|
},
|
|
"command": {
|
|
"type": "string",
|
|
"description": "Command to be executed on click",
|
|
"default": ""
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"description": "Type of the button; toggle buttons receive the .active css class and an env variable 'SWAYNC_TOGGLE_STATE' is set. See example in the default config.json",
|
|
"default": "normal",
|
|
"enum": ["normal", "toggle"]
|
|
},
|
|
"update-command": {
|
|
"type": "string",
|
|
"description": "Command to be executed on visibility change of cc to update the active state of the toggle button (should echo true or false)",
|
|
"default": ""
|
|
},
|
|
"active": {
|
|
"type": "boolean",
|
|
"description": "Whether the toggle button is active as default or not",
|
|
"default": false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"menubar": {
|
|
"type": "object",
|
|
"description": "A bar that contains action-buttons and buttons to open a dropdown with action-buttons",
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^menu(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"type": "object",
|
|
"description": "A button that opens a dropdown with action-buttons",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"description": "Text to be displayed in button",
|
|
"default": "Menu"
|
|
},
|
|
"position": {
|
|
"type": "string",
|
|
"description": "Horizontal position of the button in the bar",
|
|
"default": "right",
|
|
"enum": ["right", "left"]
|
|
},
|
|
"animation-type": {
|
|
"type": "string",
|
|
"default": "slide_down",
|
|
"description": "Animation type for menu",
|
|
"enum": ["slide_down", "slide_up", "none"]
|
|
},
|
|
"animation-duration": {
|
|
"type": "integer",
|
|
"default": 250,
|
|
"description": "Duration of animation in milliseconds"
|
|
},
|
|
"actions": {
|
|
"$ref": "#/widgets/buttons-grid/properties/actions"
|
|
}
|
|
}
|
|
},
|
|
"^buttons(#[a-zA-Z0-9_-]{1,}){0,1}?$": {
|
|
"type": "object",
|
|
"description": "A list of action-buttons to be displayed in the topbar",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"position": {
|
|
"type": "string",
|
|
"description": "Horizontal position of the button in the bar",
|
|
"default": "right",
|
|
"enum": ["right", "left"]
|
|
},
|
|
"actions": {
|
|
"$ref": "#/widgets/buttons-grid/properties/actions"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"slider": {
|
|
"type": "object",
|
|
"description": "general slider control",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"description": "Text displayed in front of the slider",
|
|
"default": "slider"
|
|
},
|
|
"cmd_setter": {
|
|
"type": "string",
|
|
"description": "command to set the value. Use $value to get the current value",
|
|
"default": ""
|
|
},
|
|
"cmd_getter": {
|
|
"type": "string",
|
|
"description": "command to get the actual value. Use $value to get the current value",
|
|
"default": ""
|
|
},
|
|
"min": {
|
|
"type": "integer",
|
|
"description": "minimum value of the slider range",
|
|
"default": 0
|
|
},
|
|
"max": {
|
|
"type": "integer",
|
|
"description": "maximum value of the slider range",
|
|
"default": 100
|
|
},
|
|
"min_limit": {
|
|
"type": "integer",
|
|
"description": "limit minimum value of the slider",
|
|
"default": 0
|
|
},
|
|
"max_limit": {
|
|
"type": "integer",
|
|
"description": "limit maximum value of the slider",
|
|
"default": 100
|
|
},
|
|
"value_scale": {
|
|
"type": "integer",
|
|
"default": 0,
|
|
"description": "scale small value, slider round digits"
|
|
}
|
|
}
|
|
},
|
|
"volume": {
|
|
"type": "object",
|
|
"description": "Slider to control pulse volume",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"description": "Text displayed in front of the volume slider",
|
|
"default": "Volume"
|
|
},
|
|
"show-per-app": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Show per app volume control"
|
|
},
|
|
"show-per-app-icon": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show application icon in per app control"
|
|
},
|
|
"show-per-app-label": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Show application name in per app control"
|
|
},
|
|
"empty-list-label": {
|
|
"type": "string",
|
|
"default": "No active sink input",
|
|
"description": "Text displayed when there are not active sink inputs"
|
|
},
|
|
"expand-button-label": {
|
|
"type": "string",
|
|
"default": "⇧",
|
|
"description": "Label displayed on button to show per app volume control"
|
|
},
|
|
"collapse-button-label": {
|
|
"type": "string",
|
|
"default": "⇩",
|
|
"description": "Label displayed on button to hide per app volume control"
|
|
},
|
|
"icon-size": {
|
|
"type": "integer",
|
|
"deprecated": true,
|
|
"default": -1,
|
|
"description": "deprecated (change the CSS root variable \"--widget-volume-row-icon-size\"): Size of the application icon in per app volume control"
|
|
},
|
|
"animation-type": {
|
|
"type": "string",
|
|
"default": "slide_down",
|
|
"description": "Animation type for menu",
|
|
"enum": ["slide_down", "slide_up", "none"]
|
|
},
|
|
"animation-duration": {
|
|
"type": "integer",
|
|
"default": 250,
|
|
"description": "Duration of animation in milliseconds"
|
|
}
|
|
}
|
|
},
|
|
"backlight": {
|
|
"type": "object",
|
|
"description": "Slider to control monitor brightness",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"description": "Text displayed in front of the backlight slider",
|
|
"default": "Brightness"
|
|
},
|
|
"device": {
|
|
"type": "string",
|
|
"description": "Name of monitor (find possible devices using `ls /sys/class/backlight` or `ls /sys/class/leds`)",
|
|
"default": "intel_backlight"
|
|
},
|
|
"subsystem": {
|
|
"type": "string",
|
|
"description": "Kernel subsystem for brightness control",
|
|
"default": "backlight",
|
|
"enum": ["backlight", "leds"]
|
|
},
|
|
"min": {
|
|
"type": "integer",
|
|
"default": 0,
|
|
"description": "Lowest possible value for brightness"
|
|
}
|
|
}
|
|
},
|
|
"inhibitors": {
|
|
"type": "object",
|
|
"description": "Control Center Inhibitors Widget",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"description": "The title of the widget",
|
|
"default": "Inhibitors"
|
|
},
|
|
"clear-all-button": {
|
|
"type": "boolean",
|
|
"description": "Whether to display a \"Clear All\" button",
|
|
"default": true
|
|
},
|
|
"button-text": {
|
|
"type": "string",
|
|
"description": "\"Clear All\" button text",
|
|
"default": "Clear All"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|