-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathorg.cinnamon.settings-daemon.plugins.color.gschema.xml.in.in
More file actions
99 lines (99 loc) · 5.82 KB
/
org.cinnamon.settings-daemon.plugins.color.gschema.xml.in.in
File metadata and controls
99 lines (99 loc) · 5.82 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
<schemalist>
<enum id="schedule_mode">
<value value="0" nick="auto"/>
<value value="1" nick="manual"/>
<value value="2" nick="always"/>
</enum>
<enum id="color_scheme">
<value value="0" nick="default"/>
<value value="1" nick="prefer-dark"/>
<value value="2" nick="prefer-light"/>
</enum>
<schema gettext-domain="@GETTEXT_PACKAGE@" id="org.cinnamon.settings-daemon.plugins.color" path="/org/cinnamon/settings-daemon/plugins/color/">
<key name="recalibrate-display-threshold" type="u">
<default>0</default>
<summary>The duration a display profile is valid</summary>
<description>This is the number of days after which the display color profile is considered invalid.</description>
</key>
<key name="recalibrate-printer-threshold" type="u">
<default>0</default>
<summary>The duration a printer profile is valid</summary>
<description>This is the number of days after which the printer color profile is considered invalid.</description>
</key>
<key name="night-light-enabled" type="b">
<default>false</default>
<summary>If the night light mode is enabled</summary>
<description>Night light mode changes the color temperature of your display when the sun has gone down or at preset times.</description>
</key>
<key name="night-light-temperature" type="u">
<default>2700</default>
<summary>Temperature of the display when enabled</summary>
<description>This temperature in Kelvin is used to modify the screen tones when night light mode is enabled. Higher values are bluer, lower redder.</description>
</key>
<key name="night-light-schedule-mode" enum="schedule_mode">
<default>'auto'</default>
<summary>Set the way start and stop times are determined</summary>
<description>Setting to 'auto' will use the system timezone to determine sunrise and sunset. Using 'manual' mode allows specifying exact start and stop times (night-light-schedule-from and -to). The 'always' mode keeps the selected color temperature of your display permanently on.</description>
</key>
<key name="night-light-schedule-from" type="d">
<default>20.00</default>
<summary>The start time</summary>
<description>When “night-light-schedule-mode” is 'manual', use this start time in hours from midnight.</description>
</key>
<key name="night-light-schedule-to" type="d">
<default>6.00</default>
<summary>The end time</summary>
<description>When “night-light-schedule-mode” is 'manual', use this end time in hours from midnight.</description>
</key>
<key name="night-light-last-coordinates" type="(dd)">
<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>
<key name="night-theme-enabled" type="b">
<default>false</default>
<summary>If the night theme switcher is on</summary>
<description>Changes the theme to “night-theme” when night mode activates (and back).</description>
</key>
<key name="night-theme" type="s">
<default>''</default>
<summary>The theme which should be activated at night</summary>
<description>This theme will be switched on instead of the current theme as soon as the night mode gets activated.</description>
</key>
<key name="night-cinnamon-theme" type="s">
<default>''</default>
<summary>The cinnamon-theme which should be activated at night</summary>
<description>This theme will be switched on instead of the current cinnamon-theme as soon as the night mode gets activated.</description>
</key>
<key name="night-icon-theme" type="s">
<default>''</default>
<summary>The icon-theme which should be activated at night</summary>
<description>This icon-theme will be switched on instead of the current icon-theme as soon as the night mode gets activated.</description>
</key>
<key name="night-color-scheme" enum="color_scheme">
<default>'prefer-dark'</default>
<summary>The xapp color scheme which should be activated at night</summary>
<description>This scheme will be switched on instead of the current color-scheme as soon as the night mode gets activated.</description>
</key>
<key name="backup-day-theme" type="s">
<default>''</default>
<summary>This is set to the last detected day theme</summary>
<description>When the cinnamon-settings-daemon activates the night theme, this is set to the replaced theme. This theme will get reactivated when the night theme switches off.</description>
</key>
<key name="backup-day-cinnamon-theme" type="s">
<default>''</default>
<summary>This is set to the last detected day desktop theme</summary>
<description>When the cinnamon-settings-daemon activates the night theme, this is set to the replaced cinnamon-theme. This theme will get reactivated when the night theme switches off.</description>
</key>
<key name="backup-day-icon-theme" type="s">
<default>''</default>
<summary>This is set to the last detected day icon theme</summary>
<description>When the cinnamon-settings-daemon activates the night theme, this is set to the replaced icon-theme. This theme will get reactivated when the night theme switches off.</description>
</key>
<key name="backup-day-color-scheme" enum="color_scheme">
<default>'default'</default>
<summary>This is set to the last detected day xapp color-scheme</summary>
<description>When the cinnamon-settings-daemon activates the night theme, this is set to the replaced theme. This theme will get reactivated when the night theme switches off.</description>
</key>
</schema>
</schemalist>