File: org.gnome.shell.extensions.timer.gschema.xml

package info (click to toggle)
gnome-shell-timer 0.0.20120615%2Bgitbde3fd2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 188 kB
  • sloc: python: 198; xml: 57; sh: 50; makefile: 17
file content (57 lines) | stat: -rw-r--r-- 2,488 bytes parent folder | download | duplicates (3)
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
<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 persistant 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>
  </schema>
</schemalist>