1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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"
}
|