-
Notifications
You must be signed in to change notification settings - Fork 12
/
org.gnome.shell.extensions.timer.gschema.xml
72 lines (72 loc) · 3.1 KB
/
org.gnome.shell.extensions.timer.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
<schemalist gettext-domain="gnome-shell-extensions">
<schema id="org.gnome.shell.extensions.timer" path="/org/gnome/shell/extensions/timer/">
<key name="manual-hours" type="i">
<default>0</default>
<summary>Hours in manual mode</summary>
<description>Time in hours the timer is about to run in manual mode</description>
</key>
<key name="manual-minutes" type="i">
<default>10</default>
<summary>Minutes in manual mode</summary>
<description>Time in minutes the timer is about to run in manual mode</description>
</key>
<key name="manual-seconds" type="i">
<default>0</default>
<summary>Seconds in manual mode</summary>
<description>Time in seconds the timer is about to run in manual mode</description>
</key>
<key name="ui-notification" type="b">
<default>false</default>
<summary>Show notification messages</summary>
<description>Set to true to show notification messages, when timer is finished</description>
</key>
<key name="ui-persistent" type="b">
<default>true</default>
<summary>Show persistent notification messages (ModalDialog)</summary>
<description>Set to true to show persistent notification messages (ModalDialog), when timer is finished</description>
</key>
<key name="ui-elapsed" type="b">
<default>false</default>
<summary>Show elapsed timer</summary>
<description>Display elapsed time, instead of a countdown</description>
</key>
<key name="ui-time" type="b">
<default>true</default>
<summary>Show time in panel</summary>
<description>Set to true to show time in panel</description>
</key>
<key name="ui-chart" type="b">
<default>true</default>
<summary>Show pie chart in panel</summary>
<description>Set to true to show pie chart in panel</description>
</key>
<key name="ui-dark-color" type="s">
<default>'#474747ff'</default>
<summary>Dark color of pie chart</summary>
</key>
<key name="ui-light-color" type="s">
<default>'#ccccccff'</default>
<summary>Light color of pie chart</summary>
</key>
<key name="presets" type="a{si}">
<default>{'3min': 180, '5min': 300, '1h': 3600}</default>
<summary>Timer presets</summary>
<description>Key-Value pairs of commonly used timer settings: key is the name of the preset, value the duration in seconds</description>
</key>
<key name="sound-enable" type="b">
<default>true</default>
<summary>Enable a sound to be played on notification</summary>
<description>Enable a sound to be played on notification</description>
</key>
<key name="sound-loop" type="b">
<default>true</default>
<summary>Loop sound until end of notification</summary>
<description>Loop sound until end of notification</description>
</key>
<key name="sound-uri" type="s">
<default>"file:///usr/share/gnome-shell/extensions/[email protected]/kitchen_timer.ogg"</default>
<summary>Notification sound</summary>
<description>Enter uri for notification sound</description>
</key>
</schema>
</schemalist>