aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Ancell <robert.ancell@canonical.com>2014-01-10 15:23:04 +1300
committerRobert Ancell <robert.ancell@canonical.com>2014-01-10 15:23:04 +1300
commit1762c40b0f1b0a12726974021497e3f29cb65f39 (patch)
tree0ca64c62f5e28e59fa98253799d4aafce963415e
parenta7bca00dc9644e3df9c0dc07e157e13a79a3235d (diff)
downloadayatana-indicator-sound-1762c40b0f1b0a12726974021497e3f29cb65f39.tar.gz
ayatana-indicator-sound-1762c40b0f1b0a12726974021497e3f29cb65f39.tar.bz2
ayatana-indicator-sound-1762c40b0f1b0a12726974021497e3f29cb65f39.zip
Use unity-control-center if it is available
-rw-r--r--debian/control2
-rw-r--r--src/service.vala7
2 files changed, 7 insertions, 2 deletions
diff --git a/debian/control b/debian/control
index ab0c0f1..3ab6ecf 100644
--- a/debian/control
+++ b/debian/control
@@ -31,7 +31,7 @@ Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
pulseaudio,
-Recommends: gnome-control-center | ubuntu-system-settings,
+Recommends: gnome-control-center | unity-control-center | ubuntu-system-settings,
Description: System sound indicator.
System sound indicator which provides easy control of the PulseAudio sound
daemon.
diff --git a/src/service.vala b/src/service.vala
index 25a7b18..12f3c46 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -123,7 +123,12 @@ public class IndicatorSound.Service {
if (env == "xubuntu" || env == "ubuntustudio")
cmd = "pavucontrol";
else
- cmd = "gnome-control-center sound";
+ {
+ if (Environment.find_program_in_path ("unity-control-center") != null)
+ cmd = "unity-control-center sound";
+ else
+ cmd = "gnome-control-center sound";
+ }
try {
Process.spawn_command_line_async (cmd);