-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg.gnome.shell.extensions.toggle-audio.gschema.xml
95 lines (93 loc) · 3.61 KB
/
org.gnome.shell.extensions.toggle-audio.gschema.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.gnome.shell.extensions.toggle-audio" path="/org/gnome/shell/extensions/toggle-audio/">
<key name="headphone-on" type="b">
<default>false</default>
<summary>''</summary>
<description>State of the toggle button</description>
</key>
<key name="show-indicator" type="b">
<default>true</default>
<summary>'True: show the icon.'</summary>
<description>Visibility flag for the system indicator icon</description>
</key>
<key name="toggle-use-monochrome-system-tray-icon" type="b">
<default>false</default>
<summary>'True: use monochrome'</summary>
<description>''</description>
</key>
<key name="toggle-use-monochrome-setting-icon" type="b">
<default>true</default>
<summary>'True: use monochrome'</summary>
<description>''</description>
</key>
<key name="mixercontrol-is-ready-for-action" type="b">
<default>false</default>
<summary>''</summary>
<description>State of the mixercontrol if it is ready taking actions</description>
</key>
<key name="headphone" type="(iss)">
<default>(0,'','')</default>
<summary>''</summary>
<description>Touple of (runtime_id, description, name)</description>
</key>
<key name="speaker" type="(iss)">
<default>(0,'','')</default>
<summary>''</summary>
<description>Touple of (runtime_id, description, name)</description>
</key>
<key name="output-devices-available" type="a{i(ss)}">
<default>[]</default>
<description>A dictionary of (runtime_id; description, name) output devices</description>
</key>
<key name="toggle-headphone-key" type="as">
<default><![CDATA[['<Ctrl><Super>T']]]></default>
<summary>Hotkey to open the cool stuff.</summary>
</key>
<key name="select-speaker-key" type="as">
<default><![CDATA[['<Ctrl><Super>S']]]></default>
<summary>Hotkey to open the cool stuff.</summary>
</key>
<key name="select-headphone-key" type="as">
<default><![CDATA[['<Ctrl><Super>H']]]></default>
<summary>Hotkey to open the cool stuff.</summary>
</key>
<key name="enable-toggle-headphone-key" type="b">
<default>false</default>
<summary>'True: hotkey is enabled'</summary>
<description>Whether the hotkey is activated and usable or not</description>
</key>
<key name="enable-select-speaker-key" type="b">
<default>false</default>
<summary>'True: hotkey is enabled'</summary>
<description>Whether the hotkey is activated and usable or not</description>
</key>
<key name="enable-select-headphone-key" type="b">
<default>false</default>
<summary>'True: hotkey is enabled'</summary>
<description>Whether the hotkey is activated and usable or not</description>
</key>
<!-- Icons -->
<key name="speaker-icon-symbolic" type="s">
<default>'audio-card-symbolic'</default>
<summary>''</summary>
<description>''</description>
</key>
<key name="speaker-icon" type="s">
<!-- There is no colorful audio card -->
<default>'audio-card-symbolic'</default>
<summary>''</summary>
<description>''</description>
</key>
<key name="headphone-icon-symbolic" type="s">
<default>'audio-headphones-symbolic'</default>
<summary>''</summary>
<description>''</description>
</key>
<key name="headphone-icon" type="s">
<default>'audio-headphones'</default>
<summary>''</summary>
<description>''</description>
</key>
</schema>
</schemalist>