mirror of
https://github.com/Snigdha-OS/snigdhaos-cinnamon-config.git
synced 2025-09-23 17:44:57 +02:00
🚀 feat(_conf): add pecies config
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
{
|
||||
"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": true
|
||||
},
|
||||
"keyOpen": {
|
||||
"type": "keybinding",
|
||||
"description": "Show menu",
|
||||
"default": "<Shift><Super>s",
|
||||
"tooltip": "Set keybinding(s) to show the sound applet menu.",
|
||||
"value": "<Shift><Super>s"
|
||||
},
|
||||
"alwaysShowMuteInput": {
|
||||
"type": "switch",
|
||||
"description": "Always show input switch",
|
||||
"tooltip": "Always show the 'Mute input' switch in the context menu.",
|
||||
"default": false,
|
||||
"value": false
|
||||
},
|
||||
"_knownPlayers": {
|
||||
"type": "generic",
|
||||
"default": [
|
||||
"banshee",
|
||||
"vlc",
|
||||
"rhythmbox"
|
||||
],
|
||||
"value": [
|
||||
"banshee",
|
||||
"vlc",
|
||||
"rhythmbox",
|
||||
"firefox"
|
||||
]
|
||||
},
|
||||
"section2": {
|
||||
"type": "section",
|
||||
"description": "Panel"
|
||||
},
|
||||
"showtrack": {
|
||||
"type": "switch",
|
||||
"default": false,
|
||||
"description": "Show song information on the panel",
|
||||
"dependency": "playerControl",
|
||||
"value": true
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"middleShiftClickAction": {
|
||||
"type": "combobox",
|
||||
"default": "in_mute",
|
||||
"options": {
|
||||
"Toggle Mute": "mute",
|
||||
"Toggle Mute output": "out_mute",
|
||||
"Toggle Mute input": "in_mute",
|
||||
"Toggle Play / Pause": "player"
|
||||
},
|
||||
"description": "Action on shift+middle click",
|
||||
"value": "in_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": true
|
||||
},
|
||||
"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": true
|
||||
},
|
||||
"tooltipShowArtistTitle": {
|
||||
"type": "switch",
|
||||
"default": false,
|
||||
"description": "Show song artist and title in tooltip",
|
||||
"value": true
|
||||
},
|
||||
"__md5__": "ceea7709f6c96376c9f83b9b8ddce0b5"
|
||||
}
|
Reference in New Issue
Block a user