Skip to content

Commit 471c7bc

Browse files
committed
fix(deck): Launch Steam with -steamdeck to prevent Steam re-install when switching to gamemode, and (potentially) allow beta client selection.
1 parent b07ec87 commit 471c7bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Bazzite
1+
name: Build Bazzite
22
on:
33
schedule:
44
- cron: '0 9 * * 2,5' # 9 am utc tues thurs

system_files/deck/shared/usr/bin/bazzite-steam

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ "$XDG_SESSION_TYPE" = "wayland" ]]; then
77
# It's been primarily developed for allowing the desktop functionality
88
# on the Steam Controller to work while Steam is open on Wayland.
99
# Also supports Steam Input as a whole.
10-
env LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam "$*"
10+
env LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam -steamdeck "$*"
1111
else
12-
/usr/bin/steam "$*"
12+
/usr/bin/steam -steamdeck "$*"
1313
fi

0 commit comments

Comments
 (0)