diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2012-11-15 16:55:36 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2012-11-15 16:55:36 +0000 |
commit | fb4b4773946403cbab2b04c85ff0ea186eff5301 (patch) | |
tree | 0010345ab50b917015b78e1c3ac8d96ffbfa95d6 /debian/patches/sound_xubuntu.patch | |
parent | 3903a7f94a0030d0f8e74c620f63dc0767f50c7e (diff) | |
parent | ae4b903d1e9c26dc8ae93ba8965e9477ee12049a (diff) | |
download | ayatana-indicator-sound-fb4b4773946403cbab2b04c85ff0ea186eff5301.tar.gz ayatana-indicator-sound-fb4b4773946403cbab2b04c85ff0ea186eff5301.tar.bz2 ayatana-indicator-sound-fb4b4773946403cbab2b04c85ff0ea186eff5301.zip |
Inline package.
Approved by PS Jenkins bot, Didier Roche.
Diffstat (limited to 'debian/patches/sound_xubuntu.patch')
-rw-r--r-- | debian/patches/sound_xubuntu.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/patches/sound_xubuntu.patch b/debian/patches/sound_xubuntu.patch new file mode 100644 index 0000000..bbf3db2 --- /dev/null +++ b/debian/patches/sound_xubuntu.patch @@ -0,0 +1,17 @@ +Description: Use pavucontrol on Xubuntu by default + Xfce4-mixer uses gstreamer0.10-pulseaudio, which doesn't provide full access + to all audio channels, only to 'Master'. +Author: Lionel Le Folgoc <mrpouit@ubuntu.com> +Last-Update: 2012-03-21 + +--- indicator-sound-0.8.4.1.orig/src/sound-service-dbus.c ++++ indicator-sound-0.8.4.1/src/sound-service-dbus.c +@@ -230,6 +230,8 @@ show_sound_settings_dialog (DbusmenuMenu + gchar* cmd; + if (!g_strcmp0 (g_getenv ("XDG_CURRENT_DESKTOP"), "Unity")) + cmd = "gnome-control-center sound-nua"; ++ else if (!g_strcmp0 (g_getenv ("DESKTOP_SESSION"), "xubuntu")) ++ cmd = "pavucontrol"; + else + cmd = "gnome-control-center sound"; + |