diff options
author | Conor Curran <conor.curran@canonical.com> | 2012-01-17 10:09:27 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2012-01-17 10:09:27 +0000 |
commit | b59c4a873d3955cb7efbf3d93ede9446ac4cea9e (patch) | |
tree | f30f187831e4cc587361aa57243cbc4f6fe4edff /data/com.canonical.indicator.sound.gschema.xml | |
parent | 9be5ce8beb52b3e4b1fa820dfaca5dea8f2db80e (diff) | |
parent | 3a1bf21052b1f9939ef574a4dfa6d4c1fe74df5d (diff) | |
download | ayatana-indicator-sound-b59c4a873d3955cb7efbf3d93ede9446ac4cea9e.tar.gz ayatana-indicator-sound-b59c4a873d3955cb7efbf3d93ede9446ac4cea9e.tar.bz2 ayatana-indicator-sound-b59c4a873d3955cb7efbf3d93ede9446ac4cea9e.zip |
merged indicator address format to bring inline with other indicators
Diffstat (limited to 'data/com.canonical.indicator.sound.gschema.xml')
-rw-r--r-- | data/com.canonical.indicator.sound.gschema.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/data/com.canonical.indicator.sound.gschema.xml b/data/com.canonical.indicator.sound.gschema.xml new file mode 100644 index 0000000..ae0cc8d --- /dev/null +++ b/data/com.canonical.indicator.sound.gschema.xml @@ -0,0 +1,38 @@ +<schemalist> + <schema id="com.canonical.indicator.sound" path="/com/canonical/indicator/sound/" gettext-domain="indicator-sound"> + <key name="blacklisted-media-players" type="as"> + <summary>A list of applications blacklisted from the sound menu</summary> + <default>[]</default> + <description> + Each media player which abides by the MPRIS2 spec will automatically appear in the menu. + This array should contain the desktop file names (minus .desktop suffix) of applications which + do not want to be included in the sound menu. + </description> + </key> + <key name="interested-media-players" type="as"> + <summary>A list of applications which at some point have registered with the sound menu</summary> + <default>[ 'rhythmbox' ]</default> + <description> + Each media player which abides by the MPRIS2 spec will automatically appear in the menu. + This array should contain the desktop file names (minus .desktop suffix) of applications which + have at some point appeared in the menU. This allows the menu remember and display offlined applications. + </description> + </key> + <key name="global-mute" type="b"> + <default>false</default> + <summary>Initial setting for global mute (mute all) on the menu </summary> + <description> + On start up volume should not be muted. + </description> + </key> + <key name="show-notify-osd-on-scroll" type="b"> + <default>true</default> + <summary>Initial setting for showing notify-osd notification on scroll volume-change</summary> + <description> + When using the mouse scroll-wheel over the indicator-sound icon, the volume changes. + Enabling this setting, every scroll volume-change a notify-osd bubble with the + updated volume value will be shown (if supported by your notification daemon). + </description> + </key> + </schema> +</schemalist> |