Skip to content

Commit 45874dc

Browse files
authored
make blood orange an optional theme
1 parent da7d76d commit 45874dc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/hhd/settings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ settings:
2828
diavolo: Diavolo
2929
ocean: Atlantis
3030
vapor: Vapor
31+
blood_orange: Blood Orange
3132

3233
reset:
3334
type: action

src/hhd/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ def get_os() -> str:
6262
with open("/sys/devices/virtual/dmi/id/product_name") as f:
6363
dmi = f.read().strip()
6464

65-
if "jupiter" in dmi.lower() or "onexplayer" in dmi.lower():
66-
if distro == "bazzite":
67-
distro = "blood_orange_ba"
68-
else:
69-
distro = "blood_orange"
65+
# if "jupiter" in dmi.lower() or "onexplayer" in dmi.lower():
66+
# if distro == "bazzite":
67+
# distro = "blood_orange_ba"
68+
# else:
69+
# distro = "blood_orange"
7070

7171
if "ONEXPLAYER F1 EVA-02" in dmi:
7272
if distro == "bazzite":

0 commit comments

Comments
 (0)