36 lines
1.7 KiB
Diff
36 lines
1.7 KiB
Diff
From fe2e6947fcad14e8356c96c6fed380824f806c52 Mon Sep 17 00:00:00 2001
|
|
From: Eli Schwartz <eschwartz93@gmail.com>
|
|
Date: Tue, 20 Mar 2018 14:11:02 -0400
|
|
Subject: [PATCH] cinanmon-settings: don't rely on the presence of
|
|
cinnamon-control-center
|
|
|
|
The existence of the cinnamon-control-center binary does not even tell
|
|
us what control center libraries are available. So instead, do the same
|
|
thing we did for cinnamon-settings modules, and check if the library
|
|
exists.
|
|
---
|
|
files/usr/bin/cinnamon-settings | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
|
|
index e01541227..1113e4b93 100755
|
|
--- a/files/usr/bin/cinnamon-settings
|
|
+++ b/files/usr/bin/cinnamon-settings
|
|
@@ -7,6 +7,7 @@ Usage: cinnamon-settings [optional module name]
|
|
|
|
import os
|
|
import sys
|
|
+import sysconfig
|
|
|
|
if len(sys.argv) > 1:
|
|
module = sys.argv[1]
|
|
@@ -14,7 +15,7 @@ if len(sys.argv) > 1:
|
|
os.execvp("/usr/share/cinnamon/cinnamon-settings/xlet-settings.py", (" ", module[0:-1]) + tuple(sys.argv[2:]))
|
|
if os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % module):
|
|
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) + tuple(sys.argv[1:]))
|
|
- elif os.path.exists("/usr/bin/cinnamon-control-center"):
|
|
+ elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), "cinnamon-control-center-1/panels/lib%s.so" % module)):
|
|
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) + tuple(sys.argv[1:]))
|
|
elif os.path.exists("/usr/bin/gnome-control-center"):
|
|
print ("Unknown module %s, calling gnome-control-center" % module)
|