diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2015-08-27 15:24:22 +0100 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2015-08-27 15:24:22 +0100 |
commit | 8e6baf4788f8aa6afb73a3e4c6d5174500ce62c3 (patch) | |
tree | 9d57a65622592dad3cde042ebb48c1753d2a6452 /src | |
parent | 3d63adec693c8d668068a8dc385f084810aede6f (diff) | |
download | ayatana-indicator-bluetooth-8e6baf4788f8aa6afb73a3e4c6d5174500ce62c3.tar.gz ayatana-indicator-bluetooth-8e6baf4788f8aa6afb73a3e4c6d5174500ce62c3.tar.bz2 ayatana-indicator-bluetooth-8e6baf4788f8aa6afb73a3e4c6d5174500ce62c3.zip |
under unity8 start system-settings instead unity-control-center
Diffstat (limited to 'src')
-rw-r--r-- | src/desktop.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/desktop.vala b/src/desktop.vala index d258a9a..0542f1e 100644 --- a/src/desktop.vala +++ b/src/desktop.vala @@ -208,7 +208,9 @@ class Desktop: Profile void show_settings (string panel) { - if (Environment.get_variable ("XDG_CURRENT_DESKTOP") == "Unity" && Environment.find_program_in_path ("unity-control-center") != null) + if (Environment.get_variable ("MIR_SOCKET") != null) + UrlDispatch.send ("settings:///system/bluetooth"); + else if (Environment.get_variable ("XDG_CURRENT_DESKTOP") == "Unity" && Environment.find_program_in_path ("unity-control-center") != null) spawn_command_line_async ("unity-control-center " + panel); else spawn_command_line_async ("gnome-control-center " + panel); |