From c429fd053e32e25d092c25fbcd3bfade9d631aa4 Mon Sep 17 00:00:00 2001 From: Popa Ioan Alexandru Date: Tue, 12 Oct 2021 02:00:59 +0300 Subject: [PATCH] Proper method of finding XFCE theme reloading capability --- src/applythemes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applythemes.py b/src/applythemes.py index 030b663..2e01058 100644 --- a/src/applythemes.py +++ b/src/applythemes.py @@ -204,9 +204,9 @@ def getThemeApplier(): return GnomeApplyThemes() elif isRunning("csd-xsettings"): return CinnamonApplyThemes() + elif isRunning("xfsettingsd"): + return XfconfApplyThemes() elif isRunning("xsettingsd"): return XsettingsdApplyThemes() - elif isRunning("xfconfd"): - return XfconfApplyThemes() else: return BaseApplyThemes()