diff options
author | Robert Tari <robert@tari.in> | 2023-09-08 08:18:58 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-09 13:53:46 +0200 |
commit | 0f4312d54665e46ca9b6e5d6bc98e37c18ea4a58 (patch) | |
tree | aa7cf18e71072ec34317ed79bf270c63ac939d5c | |
parent | 145f43c243938383a44931f2894e911547440e16 (diff) | |
download | ayatana-indicator-bluetooth-0f4312d54665e46ca9b6e5d6bc98e37c18ea4a58.tar.gz ayatana-indicator-bluetooth-0f4312d54665e46ca9b6e5d6bc98e37c18ea4a58.tar.bz2 ayatana-indicator-bluetooth-0f4312d54665e46ca9b6e5d6bc98e37c18ea4a58.zip |
src/desktop.vala: Use blueman-manager for settings on XFCE
fixes https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/issues/49
-rw-r--r-- | src/desktop.vala | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/desktop.vala b/src/desktop.vala index b7b48fd..fd690df 100644 --- a/src/desktop.vala +++ b/src/desktop.vala @@ -1,6 +1,6 @@ /* * Copyright 2013 Canonical Ltd. - * Copyright 2021-2022 Robert Tari + * Copyright 2021-2023 Robert Tari * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -267,6 +267,10 @@ class Desktop: Profile { AyatanaCommon.utils_execute_command("blueman-manager"); } + else if (AyatanaCommon.utils_is_xfce() && AyatanaCommon.utils_have_program("blueman-manager")) + { + AyatanaCommon.utils_execute_command("blueman-manager"); + } else { AyatanaCommon.utils_execute_command("gnome-control-center " + panel); |