We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07064d5 commit e55d1deCopy full SHA for e55d1de
bumblebee_status/core/theme.py
@@ -14,7 +14,7 @@
14
THEME_BASE_DIR = os.path.dirname(os.path.realpath(__file__))
15
PATHS = [
16
".",
17
- os.path.join(THEME_BASE_DIR, "../../themes")
+ os.path.join(THEME_BASE_DIR, "../../themes"),
18
]
19
20
if os.environ.get("XDG_DATA_DIRS"):
@@ -27,6 +27,7 @@
27
os.path.expanduser("~/.local/share/bumblebee-status/themes"), # PIP
28
os.path.expanduser("~/.local/pipx/venvs/bumblebee-status/share/bumblebee-status/themes"), # PIPX
29
os.path.expanduser("~/.local/share/pipx/venvs/bumblebee-status/share/bumblebee-status/themes"), # PIPX, part 2
30
+ os.path.expanduser("~/.local/share/uv/tools/bumblebee-status/share/bumblebee-status/themes/"), # uv
31
"/usr/share/bumblebee-status/themes",
32
])
33
0 commit comments