aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/control2
-rw-r--r--src/service.c9
2 files changed, 9 insertions, 2 deletions
diff --git a/debian/control b/debian/control
index f0ed35e..ea98d7c 100644
--- a/debian/control
+++ b/debian/control
@@ -24,7 +24,7 @@ Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
upower,
-Recommends: gnome-control-center (>= 3.1) | ubuntu-system-settings,
+Recommends: gnome-control-center (>= 3.1) | unity-control-center | ubuntu-system-settings,
indicator-applet (>= 0.2) | indicator-renderer,
Description: Indicator showing power state.
This indicator displays current power management information and gives
diff --git a/src/service.c b/src/service.c
index 2670a67..fe69c6d 100644
--- a/src/service.c
+++ b/src/service.c
@@ -692,7 +692,14 @@ on_settings_activated (GSimpleAction * a G_GNUC_UNUSED,
GVariant * param G_GNUC_UNUSED,
gpointer gself G_GNUC_UNUSED)
{
- execute_command ("gnome-control-center power");
+ gchar *path;
+
+ path = g_find_program_in_path ("unity-control-center");
+ if (path != NULL)
+ execute_command ("unity-control-center power");
+ else
+ execute_command ("gnome-control-center power");
+ g_free (path);
}
static void