diff options
author | Robert Tari <robert@tari.in> | 2023-09-07 10:35:16 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2023-09-07 10:35:16 +0200 |
commit | 81de7013507ab667a7296c3d8de2cf4559009e9e (patch) | |
tree | 82055ff50742104c603b8050ab5aeaf97290bd86 /data | |
parent | a41ed61c886626d87397f4b9c47097c724198bfb (diff) | |
download | ayatana-indicator-display-81de7013507ab667a7296c3d8de2cf4559009e9e.tar.gz ayatana-indicator-display-81de7013507ab667a7296c3d8de2cf4559009e9e.tar.bz2 ayatana-indicator-display-81de7013507ab667a7296c3d8de2cf4559009e9e.zip |
data/org.ayatana.indicator.display.gschema.xml: Create keys for longitude and latitude
Diffstat (limited to 'data')
-rw-r--r-- | data/org.ayatana.indicator.display.gschema.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/org.ayatana.indicator.display.gschema.xml b/data/org.ayatana.indicator.display.gschema.xml index ededac4..9218b64 100644 --- a/data/org.ayatana.indicator.display.gschema.xml +++ b/data/org.ayatana.indicator.display.gschema.xml @@ -57,5 +57,17 @@ <summary>Theme profile</summary> <description>The current theme temperature profile being used by the indicator.</description> </key> + <key name="latitude" type="d"> + <range min="-90.0" max="90.0"/> + <default>51.4825766</default> + <summary>Current geographic latitude</summary> + <description>Stores the last recorded geographic latitude of the device.</description> + </key> + <key name="longitude" type="d"> + <range min="-180.0" max="180.0"/> + <default>-0.0076589</default> + <summary>Current geographic longitude</summary> + <description>Stores the last recorded geographic longitude of the device.</description> + </key> </schema> </schemalist> |