blob: 4d3f48f6450ca254d6a9f97a6dccdbe351e65ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="icon-policy-enum">
<value value="0" nick="present"/>
<value value="1" nick="charge"/>
<value value="2" nick="never"/>
</enum>
<schema path="/com/canonical/indicator/power/" id="com.canonical.indicator.power" gettext-domain="@GETTEXT_PACKAGE@">
<key type="b" name="show-time">
<default>false</default>
<summary>Show time in Menu Bar</summary>
<description>Whether or not to show the time in the menu bar.</description>
</key>
<key name="icon-policy" enum="icon-policy-enum">
<default>"present"</default>
<summary>When to show the battery status in the menu bar.</summary>
<description>Options for when to show battery status. Valid options are "present", "charge", and "never".</description>
</key>
</schema>
</schemalist>
|