appends default home
|
@ -0,0 +1 @@
|
||||||
|
/home/user/Pictures
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"section1": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Display"
|
||||||
|
},
|
||||||
|
"show-events": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show calendar events",
|
||||||
|
"tooltip": "Check this to display events in the calendar.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"show-week-numbers": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show week numbers in calendar",
|
||||||
|
"tooltip": "Check this to show week numbers in the calendar.",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"use-custom-format": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Use a custom date format",
|
||||||
|
"tooltip": "Check this to define a custom format for the date in the calendar applet.",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"custom-format": {
|
||||||
|
"type": "entry",
|
||||||
|
"default": "%A, %B %e, %H:%M",
|
||||||
|
"description": "Date format",
|
||||||
|
"dependency": "use-custom-format",
|
||||||
|
"tooltip": "Set your custom format here.",
|
||||||
|
"value": "%A, %B %e, %H:%M"
|
||||||
|
},
|
||||||
|
"format-button": {
|
||||||
|
"type": "button",
|
||||||
|
"description": "Show information on date format syntax",
|
||||||
|
"dependency": "use-custom-format",
|
||||||
|
"callback": "on_custom_format_button_pressed",
|
||||||
|
"tooltip": "Click this button to know more about the syntax for date formats."
|
||||||
|
},
|
||||||
|
"section2": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Keyboard shortcuts"
|
||||||
|
},
|
||||||
|
"keyOpen": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"description": "Show calendar",
|
||||||
|
"default": "<Super>c",
|
||||||
|
"tooltip": "Set keybinding(s) to show the calendar.",
|
||||||
|
"value": "<Super>c"
|
||||||
|
},
|
||||||
|
"__md5__": "5ea063337a9b776b6c19825f31b2a320"
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"head": {
|
||||||
|
"type": "header",
|
||||||
|
"description": "Settings"
|
||||||
|
},
|
||||||
|
"show-full-uri": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Display full paths in the list",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"__md5__": "47cfb84ecf716b6b4756ccdac7f369e4"
|
||||||
|
}
|
|
@ -0,0 +1,356 @@
|
||||||
|
{
|
||||||
|
"layout": {
|
||||||
|
"type": "layout",
|
||||||
|
"pages": [
|
||||||
|
"generalPage",
|
||||||
|
"panelPage",
|
||||||
|
"thumbnailsPage",
|
||||||
|
"contextMenuPage"
|
||||||
|
],
|
||||||
|
"generalPage": {
|
||||||
|
"type": "page",
|
||||||
|
"title": "General",
|
||||||
|
"sections": [
|
||||||
|
"generalSection",
|
||||||
|
"hotKeysSection"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"panelPage": {
|
||||||
|
"type": "page",
|
||||||
|
"title": "Panel",
|
||||||
|
"sections": [
|
||||||
|
"appButtonsSection"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"thumbnailsPage": {
|
||||||
|
"type": "page",
|
||||||
|
"title": "Thumbnails",
|
||||||
|
"sections": [
|
||||||
|
"thumbnailsSection",
|
||||||
|
"hoverPeekSection"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"contextMenuPage": {
|
||||||
|
"type": "page",
|
||||||
|
"title": "Context Menu",
|
||||||
|
"sections": [
|
||||||
|
"contextMenuSection"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"generalSection": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Behavior",
|
||||||
|
"keys": [
|
||||||
|
"group-apps",
|
||||||
|
"scroll-behavior",
|
||||||
|
"left-click-action",
|
||||||
|
"middle-click-action",
|
||||||
|
"show-all-workspaces"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appButtonsSection": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Application Buttons",
|
||||||
|
"keys": [
|
||||||
|
"title-display",
|
||||||
|
"launcher-animation-effect",
|
||||||
|
"number-display",
|
||||||
|
"pinned-apps",
|
||||||
|
"enable-app-button-dragging"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"hotKeysSection": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Hot Keys",
|
||||||
|
"keys": [
|
||||||
|
"cycleMenusHotkey",
|
||||||
|
"show-apps-order-hotkey",
|
||||||
|
"show-apps-order-timeout",
|
||||||
|
"super-num-hotkeys"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"thumbnailsSection": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Thumbnails",
|
||||||
|
"keys": [
|
||||||
|
"thumbnail-scroll-behavior",
|
||||||
|
"show-thumbnails",
|
||||||
|
"animate-thumbnails",
|
||||||
|
"vertical-thumbnails",
|
||||||
|
"sort-thumbnails",
|
||||||
|
"highlight-last-focused-thumbnail",
|
||||||
|
"onclick-thumbnails",
|
||||||
|
"thumbnail-timeout",
|
||||||
|
"thumbnail-size"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"hoverPeekSection": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Hover Peek",
|
||||||
|
"keys": [
|
||||||
|
"enable-hover-peek",
|
||||||
|
"hover-peek-time-in",
|
||||||
|
"hover-peek-time-out",
|
||||||
|
"hover-peek-opacity"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"contextMenuSection": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "",
|
||||||
|
"keys": [
|
||||||
|
"show-recent",
|
||||||
|
"autostart-menu-item",
|
||||||
|
"monitor-move-all-windows"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"number-display": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show window count numbers",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"title-display": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 1,
|
||||||
|
"description": "Button label",
|
||||||
|
"options": {
|
||||||
|
"None": 1,
|
||||||
|
"Application name": 2,
|
||||||
|
"Window title": 3,
|
||||||
|
"Window title (only for the focused window)": 4
|
||||||
|
},
|
||||||
|
"value": 1
|
||||||
|
},
|
||||||
|
"scroll-behavior": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 1,
|
||||||
|
"description": "Mouse wheel scroll action",
|
||||||
|
"options": {
|
||||||
|
"None": 1,
|
||||||
|
"Cycle apps": 2,
|
||||||
|
"Cycle windows": 3
|
||||||
|
},
|
||||||
|
"value": 1
|
||||||
|
},
|
||||||
|
"left-click-action": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 2,
|
||||||
|
"description": "Left click action",
|
||||||
|
"options": {
|
||||||
|
"None": 1,
|
||||||
|
"Toggle activation of last focused window": 2,
|
||||||
|
"Cycle windows": 3
|
||||||
|
},
|
||||||
|
"value": 2
|
||||||
|
},
|
||||||
|
"middle-click-action": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 3,
|
||||||
|
"description": "Middle click action",
|
||||||
|
"options": {
|
||||||
|
"None": 1,
|
||||||
|
"Launch new app instance": 2,
|
||||||
|
"Close last focused window in group": 3
|
||||||
|
},
|
||||||
|
"value": 3
|
||||||
|
},
|
||||||
|
"pinned-apps": {
|
||||||
|
"type": "generic",
|
||||||
|
"default": [
|
||||||
|
"nemo.desktop",
|
||||||
|
"firefox.desktop",
|
||||||
|
"org.gnome.Terminal.desktop"
|
||||||
|
],
|
||||||
|
"value": [
|
||||||
|
"firefox.desktop",
|
||||||
|
"org.gnome.Terminal.desktop",
|
||||||
|
"nemo.desktop"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"group-apps": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Group windows by application",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"show-all-workspaces": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show windows from all workspaces",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"enable-app-button-dragging": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Enable app button dragging",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"launcher-animation-effect": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 3,
|
||||||
|
"description": "Launcher animation",
|
||||||
|
"options": {
|
||||||
|
"None": 1,
|
||||||
|
"Fade": 2,
|
||||||
|
"Scale": 3
|
||||||
|
},
|
||||||
|
"value": 3
|
||||||
|
},
|
||||||
|
"cycleMenusHotkey": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"default": "",
|
||||||
|
"description": "Global hotkey for cycling through thumbnail menus",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"show-apps-order-hotkey": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"default": "<Super>grave",
|
||||||
|
"description": "Global hotkey to show the order of apps",
|
||||||
|
"value": "<Super>grave"
|
||||||
|
},
|
||||||
|
"show-apps-order-timeout": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 2500,
|
||||||
|
"min": 100,
|
||||||
|
"max": 10000,
|
||||||
|
"step": 10,
|
||||||
|
"units": "milliseconds",
|
||||||
|
"description": "Duration of the apps order display on hotkey press",
|
||||||
|
"value": 2500
|
||||||
|
},
|
||||||
|
"super-num-hotkeys": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Enable Super+<number> shortcut to switch/open apps",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"thumbnail-timeout": {
|
||||||
|
"dependency": "!onclick-thumbnails",
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 250,
|
||||||
|
"description": "Delay before showing thumbnails",
|
||||||
|
"options": {
|
||||||
|
"50 ms": 50,
|
||||||
|
"250 ms": 250,
|
||||||
|
"500 ms": 500
|
||||||
|
},
|
||||||
|
"value": 250
|
||||||
|
},
|
||||||
|
"thumbnail-size": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 6,
|
||||||
|
"description": "Thumbnail size",
|
||||||
|
"options": {
|
||||||
|
"Small": 3,
|
||||||
|
"Medium": 6,
|
||||||
|
"Large": 9,
|
||||||
|
"Largest": 12
|
||||||
|
},
|
||||||
|
"value": 6
|
||||||
|
},
|
||||||
|
"thumbnail-scroll-behavior": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Cycle windows on mouse wheel scroll",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"show-thumbnails": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show thumbnails",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"animate-thumbnails": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Animate thumbnails",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"vertical-thumbnails": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Enable vertical thumbnails",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"sort-thumbnails": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Sort thumbnails according to the last focused windows",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"highlight-last-focused-thumbnail": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Highlight the thumbnail of the last focused window",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"onclick-thumbnails": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Click to show thumbnails",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"show-recent": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show recent items",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"autostart-menu-item": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show autostart option",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"monitor-move-all-windows": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Apply the monitor move option to all windows",
|
||||||
|
"tooltip": "When clicking \"Move to monitor\" in the context menu, this option will move all of an app's windows instead of just the last focused window from the app.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"enable-hover-peek": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show the window when hovering its thumbnail",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"hover-peek-time-in": {
|
||||||
|
"dependency": "enable-hover-peek",
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 300,
|
||||||
|
"description": "Window fade-in time",
|
||||||
|
"options": {
|
||||||
|
"150 ms": 150,
|
||||||
|
"300 ms": 300,
|
||||||
|
"450 ms": 450
|
||||||
|
},
|
||||||
|
"value": 300
|
||||||
|
},
|
||||||
|
"hover-peek-time-out": {
|
||||||
|
"dependency": "enable-hover-peek",
|
||||||
|
"type": "combobox",
|
||||||
|
"default": 0,
|
||||||
|
"description": "Window fade-out time",
|
||||||
|
"options": {
|
||||||
|
"None": 0,
|
||||||
|
"150 ms": 150,
|
||||||
|
"300 ms": 300,
|
||||||
|
"450 ms": 450
|
||||||
|
},
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
"hover-peek-opacity": {
|
||||||
|
"dependency": "enable-hover-peek",
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 100,
|
||||||
|
"min": 0,
|
||||||
|
"max": 100,
|
||||||
|
"step": 1,
|
||||||
|
"units": "percent",
|
||||||
|
"description": "Window opacity",
|
||||||
|
"value": 100
|
||||||
|
},
|
||||||
|
"__md5__": "6f73ea938aeb5481595a809eb6cbe8e3"
|
||||||
|
}
|
|
@ -0,0 +1,267 @@
|
||||||
|
{
|
||||||
|
"layout": {
|
||||||
|
"type": "layout",
|
||||||
|
"pages": [
|
||||||
|
"panel",
|
||||||
|
"menu"
|
||||||
|
],
|
||||||
|
"panel": {
|
||||||
|
"type": "page",
|
||||||
|
"title": "Panel",
|
||||||
|
"sections": [
|
||||||
|
"panel-appear",
|
||||||
|
"panel-behave"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"menu": {
|
||||||
|
"type": "page",
|
||||||
|
"title": "Menu",
|
||||||
|
"sections": [
|
||||||
|
"menu-layout",
|
||||||
|
"menu-behave"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"panel-appear": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Appearance",
|
||||||
|
"keys": [
|
||||||
|
"menu-custom",
|
||||||
|
"menu-icon",
|
||||||
|
"menu-icon-size",
|
||||||
|
"menu-label"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"panel-behave": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Behavior",
|
||||||
|
"keys": [
|
||||||
|
"overlay-key",
|
||||||
|
"activate-on-hover",
|
||||||
|
"hover-delay",
|
||||||
|
"force-show-panel",
|
||||||
|
"enable-animation"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"menu-layout": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Layout and content",
|
||||||
|
"keys": [
|
||||||
|
"restrict-menu-height",
|
||||||
|
"menu-height",
|
||||||
|
"show-category-icons",
|
||||||
|
"category-icon-size",
|
||||||
|
"show-application-icons",
|
||||||
|
"application-icon-size",
|
||||||
|
"favbox-show",
|
||||||
|
"fav-icon-size",
|
||||||
|
"show-places",
|
||||||
|
"show-recents",
|
||||||
|
"menu-editor-button"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"menu-behave": {
|
||||||
|
"type": "section",
|
||||||
|
"title": "Behavior",
|
||||||
|
"keys": [
|
||||||
|
"category-hover",
|
||||||
|
"enable-autoscroll",
|
||||||
|
"search-filesystem"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"overlay-key": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"description": "Keyboard shortcut to open and close the menu",
|
||||||
|
"default": "Super_L::Super_R",
|
||||||
|
"value": "Super_L::Super_R"
|
||||||
|
},
|
||||||
|
"menu-custom": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Use a custom icon and label",
|
||||||
|
"tooltip": "Check this to specify a custom icon and label",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"menu-icon": {
|
||||||
|
"type": "iconfilechooser",
|
||||||
|
"default": "cinnamon-symbolic",
|
||||||
|
"description": "Icon",
|
||||||
|
"tooltip": "Select an icon to show in the panel.",
|
||||||
|
"default_icon": "cinnamon-symbolic",
|
||||||
|
"dependency": "menu-custom",
|
||||||
|
"value": "cinnamon-symbolic"
|
||||||
|
},
|
||||||
|
"menu-icon-size": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 32,
|
||||||
|
"min": 16,
|
||||||
|
"max": 96,
|
||||||
|
"step": 1,
|
||||||
|
"units": "px",
|
||||||
|
"description": "Icon size",
|
||||||
|
"dependency": "menu-custom",
|
||||||
|
"value": 32
|
||||||
|
},
|
||||||
|
"menu-label": {
|
||||||
|
"type": "entry",
|
||||||
|
"default": "Menu",
|
||||||
|
"description": "Text",
|
||||||
|
"tooltip": "Enter custom text to show in the panel.",
|
||||||
|
"dependency": "menu-custom",
|
||||||
|
"value": "Menu"
|
||||||
|
},
|
||||||
|
"restrict-menu-height": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Use a fixed menu height",
|
||||||
|
"tooltip": "Keep the size of the menu the same no matter how many favorites or categories there are.",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"menu-height": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 550,
|
||||||
|
"min": 300,
|
||||||
|
"max": 2000,
|
||||||
|
"step": 10,
|
||||||
|
"units": "px",
|
||||||
|
"description": "Menu height",
|
||||||
|
"dependency": "restrict-menu-height",
|
||||||
|
"value": 550
|
||||||
|
},
|
||||||
|
"show-category-icons": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show category icons",
|
||||||
|
"tooltip": "Choose whether or not to show icons on categories.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"category-icon-size": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 22,
|
||||||
|
"min": 16,
|
||||||
|
"max": 48,
|
||||||
|
"step": 1,
|
||||||
|
"units": "px",
|
||||||
|
"description": "Categories icon size",
|
||||||
|
"dependency": "show-category-icons",
|
||||||
|
"value": 22
|
||||||
|
},
|
||||||
|
"show-application-icons": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show application icons",
|
||||||
|
"tooltip": "Choose whether or not to show icons on applications.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"application-icon-size": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 22,
|
||||||
|
"min": 16,
|
||||||
|
"max": 48,
|
||||||
|
"step": 1,
|
||||||
|
"units": "px",
|
||||||
|
"description": "Applications icon size",
|
||||||
|
"dependency": "show-application-icons",
|
||||||
|
"value": 22
|
||||||
|
},
|
||||||
|
"favbox-show": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show favorites and session buttons",
|
||||||
|
"tooltip": "Choose whether or not to show the left pane of the menu.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"fav-icon-size": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 32,
|
||||||
|
"min": 16,
|
||||||
|
"max": 64,
|
||||||
|
"step": 1,
|
||||||
|
"units": "px",
|
||||||
|
"description": "Favorites icon size",
|
||||||
|
"dependency": "favbox-show",
|
||||||
|
"value": 32
|
||||||
|
},
|
||||||
|
"show-favorites": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show favorites",
|
||||||
|
"tooltip": "Choose whether or not to show favorite files in the menu.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"show-places": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show bookmarks and places",
|
||||||
|
"tooltip": "Choose whether or not to show bookmarks and places in the menu.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"show-recents": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show recents",
|
||||||
|
"tooltip": "Choose whether or not to show recents in the menu.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"category-hover": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Change categories on hover",
|
||||||
|
"tooltip": "Choose whether or not to change categories by hovering.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"enable-autoscroll": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Enable autoscrolling in application list",
|
||||||
|
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"search-filesystem": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Enable filesystem path entry in search box",
|
||||||
|
"tooltip": "Allows path entry in the menu search box.",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"force-show-panel": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Force the panel to be visible when opening the menu",
|
||||||
|
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden).",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"activate-on-hover": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Open the menu when I move my mouse over it",
|
||||||
|
"tooltip": "Enable opening the menu when the mouse enters the applet",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"hover-delay": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 0,
|
||||||
|
"min": 0,
|
||||||
|
"max": 1000,
|
||||||
|
"step": 50,
|
||||||
|
"units": "milliseconds",
|
||||||
|
"dependency": "activate-on-hover",
|
||||||
|
"description": "Menu hover delay",
|
||||||
|
"tooltip": "Delay before the menu opens when hovered",
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
"enable-animation": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Use menu animations",
|
||||||
|
"tooltip": "Allow the menu to animate on open and close",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"menu-editor-button": {
|
||||||
|
"type": "button",
|
||||||
|
"description": "Open the menu editor",
|
||||||
|
"callback": "_launch_editor",
|
||||||
|
"tooltip": "Press this button to customize your menu entries."
|
||||||
|
},
|
||||||
|
"__md5__": "38c9122e36f6267fae12706a694ac35f"
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"section1": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Menu"
|
||||||
|
},
|
||||||
|
"keyOpen": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"description": "Show menu",
|
||||||
|
"default": "<Shift><Super>n",
|
||||||
|
"tooltip": "Set keybinding(s) to show the network applet menu.",
|
||||||
|
"value": "<Shift><Super>n"
|
||||||
|
},
|
||||||
|
"__md5__": "976b46e8430522899e7fe34f2abfee76"
|
||||||
|
}
|
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
"section1": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Behavior"
|
||||||
|
},
|
||||||
|
"ignoreTransientNotifications": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Ignore transient notifications",
|
||||||
|
"tooltip": "Check this to ignore transient notifications.",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"section2": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Display"
|
||||||
|
},
|
||||||
|
"showEmptyTray": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show empty tray",
|
||||||
|
"tooltip": "Check this to show the tray even when there are no new notifications.",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"showNotificationCount": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show the number of notifications",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"section3": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Keyboard shortcuts"
|
||||||
|
},
|
||||||
|
"keyOpen": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"description": "Show notifications",
|
||||||
|
"default": "<Super>n",
|
||||||
|
"tooltip": "Set keybinding(s) to show the notification popup menu.",
|
||||||
|
"value": "<Super>n"
|
||||||
|
},
|
||||||
|
"keyClear": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"description": "Clear notifications",
|
||||||
|
"default": "<Shift><Super>c",
|
||||||
|
"tooltip": "Set keybinding(s) to clear all notifications.",
|
||||||
|
"value": "<Shift><Super>c"
|
||||||
|
},
|
||||||
|
"section4": {
|
||||||
|
"type": "section",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"btnSystemSettings": {
|
||||||
|
"type": "button",
|
||||||
|
"description": "Open notification settings",
|
||||||
|
"callback": "on_btn_open_system_settings_clicked"
|
||||||
|
},
|
||||||
|
"__md5__": "cb9ad336b2e360509f8ba388e1d19b8f"
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"labelinfo": {
|
||||||
|
"type": "combobox",
|
||||||
|
"description": "Display",
|
||||||
|
"default": "nothing",
|
||||||
|
"options": {
|
||||||
|
"Show percentage": "percentage",
|
||||||
|
"Show time remaining": "time",
|
||||||
|
"Show percentage and time remaining": "percentage_time",
|
||||||
|
"Hide label": "nothing"
|
||||||
|
},
|
||||||
|
"value": "nothing"
|
||||||
|
},
|
||||||
|
"showmulti": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Always show all batteries",
|
||||||
|
"tooltip": "Check this to always show multiple batteries in the panel, regardless of whether one of them is marked primary.",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"__md5__": "db29025b0930e93063f745d0adcc675a"
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"section1": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Appearance"
|
||||||
|
},
|
||||||
|
"show-icon": {
|
||||||
|
"type": "radiogroup",
|
||||||
|
"default": "printers",
|
||||||
|
"description": "Show printer icon",
|
||||||
|
"options": {
|
||||||
|
"Always": "always",
|
||||||
|
"When printers exist": "printers",
|
||||||
|
"When printing": "jobs"
|
||||||
|
},
|
||||||
|
"tooltip": "Choose when to show the printer icon in the panel",
|
||||||
|
"value": "printers"
|
||||||
|
},
|
||||||
|
"__md5__": "93e5a8d56ccfdbf949efa8b7e5b6ef9d"
|
||||||
|
}
|
|
@ -0,0 +1,116 @@
|
||||||
|
{
|
||||||
|
"section1": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Menu"
|
||||||
|
},
|
||||||
|
"playerControl": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Control Players",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"extendedPlayerControl": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show Loop and Shuffle controls",
|
||||||
|
"dependency": "playerControl",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"keyOpen": {
|
||||||
|
"type": "keybinding",
|
||||||
|
"description": "Show menu",
|
||||||
|
"default": "<Shift><Super>s",
|
||||||
|
"tooltip": "Set keybinding(s) to show the sound applet menu.",
|
||||||
|
"value": "<Shift><Super>s"
|
||||||
|
},
|
||||||
|
"_knownPlayers": {
|
||||||
|
"type": "generic",
|
||||||
|
"default": [
|
||||||
|
"banshee",
|
||||||
|
"vlc",
|
||||||
|
"rhythmbox"
|
||||||
|
],
|
||||||
|
"value": [
|
||||||
|
"banshee",
|
||||||
|
"vlc",
|
||||||
|
"rhythmbox"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"section2": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Panel"
|
||||||
|
},
|
||||||
|
"showtrack": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show song information on the panel",
|
||||||
|
"dependency": "playerControl",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"truncatetext": {
|
||||||
|
"type": "spinbutton",
|
||||||
|
"default": 30,
|
||||||
|
"min": 5,
|
||||||
|
"max": 512,
|
||||||
|
"units": "characters",
|
||||||
|
"step": 1,
|
||||||
|
"description": "Limit song information to",
|
||||||
|
"dependency": "showtrack",
|
||||||
|
"value": 30
|
||||||
|
},
|
||||||
|
"middleClickAction": {
|
||||||
|
"type": "combobox",
|
||||||
|
"default": "mute",
|
||||||
|
"options": {
|
||||||
|
"Toggle Mute": "mute",
|
||||||
|
"Toggle Mute output": "out_mute",
|
||||||
|
"Toggle Mute input": "in_mute",
|
||||||
|
"Toggle Play / Pause": "player"
|
||||||
|
},
|
||||||
|
"description": "Action on middle click",
|
||||||
|
"value": "mute"
|
||||||
|
},
|
||||||
|
"horizontalScroll": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Use horizontal scrolling to move between tracks",
|
||||||
|
"dependency": "playerControl",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"showalbum": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show album art as icon",
|
||||||
|
"dependency": "playerControl",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"hideSystray": {
|
||||||
|
"type": "switch",
|
||||||
|
"description": "Hide system tray icons for compatible players",
|
||||||
|
"default": true,
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"section3": {
|
||||||
|
"type": "section",
|
||||||
|
"description": "Tooltip"
|
||||||
|
},
|
||||||
|
"tooltipShowVolume": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": true,
|
||||||
|
"description": "Show volume in tooltip",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"tooltipShowPlayer": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show player in tooltip",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"tooltipShowArtistTitle": {
|
||||||
|
"type": "switch",
|
||||||
|
"default": false,
|
||||||
|
"description": "Show song artist and title in tooltip",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"__md5__": "cd7a99af6fce1f04852ac27d13a3bf55"
|
||||||
|
}
|
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 790 B |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 676 B |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 5 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 8.5 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 9.9 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 9.9 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 7 KiB |
After Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 9 KiB |