From 7b1659a1b594cc49f8207a2858b499086cda27a8 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Sun, 20 Dec 2020 10:23:06 +0100 Subject: [PATCH] [core/theme] add /usr/share as theme directory add a theme directory /usr/share/bumblebee-status/themes for system-wide theme installation. fixes #753 --- bumblebee_status/core/theme.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bumblebee_status/core/theme.py b/bumblebee_status/core/theme.py index 800bd66..4de58d3 100644 --- a/bumblebee_status/core/theme.py +++ b/bumblebee_status/core/theme.py @@ -17,6 +17,7 @@ PATHS = [ os.path.join(THEME_BASE_DIR, "../../themes"), os.path.expanduser("~/.config/bumblebee-status/themes"), os.path.expanduser("~/.local/share/bumblebee-status/themes"), # PIP + "/usr/share/bumblebee-status/themes", ]