Skip to content

Commit be1f26e

Browse files
committed
add feature flags to scripts
1 parent c57d2c6 commit be1f26e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

local_hhd.sh

+10-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,13 @@ FINAL_URL='https://api.github.com/repos/hhd-dev/hhd-ui/releases/latest'
1313
curl -L $(curl -s "${FINAL_URL}" | grep "browser_download_url" | cut -d '"' -f 4) -o $HOME/.local/share/hhd-tmp/hhd-ui
1414
chmod +x $HOME/.local/share/hhd-tmp/hhd-ui
1515

16-
nohup sudo HHD_OVERLAY="$HOME/.local/share/hhd-tmp/hhd-ui" ~/.local/share/hhd-tmp/venv/bin/hhd --user $(whoami) &> /dev/null &
16+
nohup sudo \
17+
HHD_ALLY_POWERSAVE=1 \
18+
HHD_HORI_STEAM=1 \
19+
HHD_PPD_MASK=1 \
20+
HHD_HIDE_ALL=1 \
21+
HHD_GS_STEAMUI_HALFHZ=1 \
22+
HHD_GS_DPMS=1 \
23+
HHD_GS_STANDBY=1 \
24+
HHD_OVERLAY="$HOME/.local/share/hhd-tmp/hhd-ui" \
25+
~/.local/share/hhd-tmp/venv/bin/hhd --user $(whoami) &> /dev/null &

sync.sh

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ USER=${USER:-bazzite}
3131
# Environment="HHD_HIDE_ALL=1"
3232
# Environment="HHD_GS_STEAMUI_HALFHZ=1"
3333
# Environment="HHD_GS_DPMS=1"
34+
# Environment="HHD_GS_STANDBY=1"
3435

3536
# [Install]
3637
# WantedBy=multi-user.target

0 commit comments

Comments
 (0)