-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathio.elementary.settings-daemon.gschema.xml
More file actions
146 lines (137 loc) · 5.98 KB
/
io.elementary.settings-daemon.gschema.xml
File metadata and controls
146 lines (137 loc) · 5.98 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="ColorScheme">
<value nick='no-preference' value='0'/>
<value nick='prefer-dark' value='1'/>
<value nick='prefer-light' value='2'/>
</enum>
<enum id="PreferDarkScheduleType">
<value nick='disabled' value='0'/>
<value nick='sunset-to-sunrise' value='1'/>
<value nick='manual' value='2'/>
</enum>
<schema path="/io/elementary/settings-daemon/prefers-color-scheme/" id="io.elementary.settings-daemon.prefers-color-scheme">
<key enum="ColorScheme" name="color-scheme">
<default>'no-preference'</default>
<summary>Color Scheme</summary>
<description>The preferred color scheme for the user interface. Valid values are “no-preference”, “prefer-dark”, “prefer-light”.</description>
</key>
<key enum="PreferDarkScheduleType" name="prefer-dark-schedule">
<default>'disabled'</default>
<summary>Algorithm for prefer dark schedule</summary>
<description>Choose the algorithm used for prefer dark schedule.</description>
</key>
<key type="d" name="prefer-dark-schedule-from">
<default>20.0</default>
<summary>The start time</summary>
<description></description>
</key>
<key type="d" name="prefer-dark-schedule-to">
<default>6.0</default>
<summary>The stop time</summary>
<description></description>
</key>
<key type="b" name="prefer-dark-schedule-snoozed">
<default>false</default>
<summary>Snooze Dark Schedule</summary>
<description>True if color scheme was changed during the dark mode schedule. Does nothing if set directly.</description>
</key>
<key type="(dd)" name="last-coordinates">
<default>(91,181)</default>
<summary>The last detected position</summary>
<description>When location services are available this represents the last detected location. The default value is an invalid value to ensure it is always updated at startup.</description>
</key>
</schema>
<schema path="/io/elementary/settings-daemon/housekeeping/" id="io.elementary.settings-daemon.housekeeping">
<key type="b" name="cleanup-downloads-folder">
<default>false</default>
<summary>Whether the Downloads folder should be automatically cleaned up.</summary>
<description></description>
</key>
<key type="b" name="cleanup-screenshots-folder">
<default>false</default>
<summary>Whether the Screenshots folder should be automatically cleaned up.</summary>
<description></description>
</key>
<key type="b" name="cleanup-temp-folder">
<default>false</default>
<summary>Whether the Temp folder should be automatically cleaned up.</summary>
<description></description>
</key>
<key type="b" name="cleanup-trash-folder">
<default>false</default>
<summary>Whether the Trash folder should be automatically cleaned up.</summary>
<description></description>
</key>
<key type="i" name="old-files-age">
<default>30</default>
<summary>How many days to keep an old file before it is cleaned up.</summary>
<description></description>
</key>
</schema>
<!-- Keep this synchronized with GDateWeekday. -->
<enum id='week-day'>
<value nick='monday' value='1'/>
<value nick='tuesday' value='2'/>
<value nick='wednesday' value='3'/>
<value nick='thursday' value='4'/>
<value nick='friday' value='5'/>
<value nick='saturday' value='6'/>
<value nick='sunday' value='7'/>
</enum>
<schema path="/io/elementary/settings-daemon/datetime/" id="io.elementary.settings-daemon.datetime">
<key type="b" name="show-weeks">
<default>false</default>
<summary>show week numbers.</summary>
<description>If this is set to true, week numbers will be shown in the calendar.</description>
</key>
<key name='week-start-day-name' enum='week-day'>
<default>'sunday'</default>
<summary>The first day of the week.</summary>
<description>The day for calendars to use as the first day of the week</description>
</key>
</schema>
<schema path="/io/elementary/settings-daemon/focus-modes/" id="io.elementary.settings-daemon.focus-modes">
<key type="a(ssbba{sv}a{sv})" name="focus-modes">
<default>[]</default>
<summary>The current focus modes.</summary>
<description>a(a{sv}a{sv})</description>
</key>
</schema>
<schema path="/io/elementary/settings-daemon/system-update/" id="io.elementary.settings-daemon.system-update">
<key type="b" name="automatic-updates">
<default>false</default>
<summary>Automatic updates</summary>
<description>Whether to automatically download updates</description>
</key>
<key type="x" name="last-refresh-time">
<default>0</default>
<summary>When updates were last refreshed</summary>
<description>When the cache was last refreshed and checked for updates in unix utc.</description>
</key>
</schema>
<schema path="/io/elementary/settings-daemon/power/" id="io.elementary.settings-daemon.power">
<key type="s" name="profile-plugged-in">
<default>"balanced"</default>
<summary>Power profile to use when plugged in</summary>
<description></description>
</key>
<key type="s" name="profile-on-good-battery">
<default>"balanced"</default>
<summary>Power profile to use on battery</summary>
<description></description>
</key>
</schema>
<schema path="/io/elementary/settings-daemon/applications/" id="io.elementary.settings-daemon.applications">
<key type="a(isa{sv}as)" name="application-shortcuts">
<default>[]</default>
<summary>Application shortcuts</summary>
<description>
The first argument is a type (0 - launch desktop file, 1 - launch cli).
The second argument is the 'target', desktop file name if type is 0, commandline if it's 1.
The third argument is 'parameters'
And the last argument is a list of keyboard shortcuts.
</description>
</key>
</schema>
</schemalist>