Skip to content

Commit e55d1de

Browse files
fix(uv): add uv-specific path to theme discovery
fixes #1054
1 parent 07064d5 commit e55d1de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bumblebee_status/core/theme.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
THEME_BASE_DIR = os.path.dirname(os.path.realpath(__file__))
1515
PATHS = [
1616
".",
17-
os.path.join(THEME_BASE_DIR, "../../themes")
17+
os.path.join(THEME_BASE_DIR, "../../themes"),
1818
]
1919

2020
if os.environ.get("XDG_DATA_DIRS"):
@@ -27,6 +27,7 @@
2727
os.path.expanduser("~/.local/share/bumblebee-status/themes"), # PIP
2828
os.path.expanduser("~/.local/pipx/venvs/bumblebee-status/share/bumblebee-status/themes"), # PIPX
2929
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
3031
"/usr/share/bumblebee-status/themes",
3132
])
3233

0 commit comments

Comments
 (0)