diff options
Diffstat (limited to 'src/desktop.vala')
-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); |