diff options
author | Robert Tari <robert@tari.in> | 2023-07-06 02:48:53 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-06 22:29:30 +0200 |
commit | 08134f79149c9378fb5e5ddde016b4f600ce33aa (patch) | |
tree | d857d8080b647c7df81b8d095341f546f7c9a311 /data | |
parent | d2e5eb6e98986cd2391ece1ae0cf9f1a7139b63c (diff) | |
download | ayatana-indicator-display-08134f79149c9378fb5e5ddde016b4f600ce33aa.tar.gz ayatana-indicator-display-08134f79149c9378fb5e5ddde016b4f600ce33aa.tar.bz2 ayatana-indicator-display-08134f79149c9378fb5e5ddde016b4f600ce33aa.zip |
data/org.ayatana.indicator.display.gschema.xml: Add theme manipulation keys
Diffstat (limited to 'data')
-rw-r--r-- | data/org.ayatana.indicator.display.gschema.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/org.ayatana.indicator.display.gschema.xml b/data/org.ayatana.indicator.display.gschema.xml index 3a0c89b..ededac4 100644 --- a/data/org.ayatana.indicator.display.gschema.xml +++ b/data/org.ayatana.indicator.display.gschema.xml @@ -37,5 +37,25 @@ <summary>Screen brightness</summary> <description>Stores the current brightness value of your screen.</description> </key> + <key name="light-theme" type="s"> + <default>'current'</default> + <summary>The name of the light theme</summary> + <description>This is the theme the indicator will set when "Light" is selected.</description> + </key> + <key name="dark-theme" type="s"> + <default>'current'</default> + <summary>The name of the dark theme</summary> + <description>This is the theme the indicator will set when "Dark" is selected.</description> + </key> + <key type="s" name="theme-profile"> + <choices> + <choice value='light'/> + <choice value='dark'/> + <choice value='adaptive'/> + </choices> + <default>'light'</default> + <summary>Theme profile</summary> + <description>The current theme temperature profile being used by the indicator.</description> + </key> </schema> </schemalist> |