mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-09 21:48:02 +00:00
7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "$XDG_SESSION_TYPE" = "wayland" ]]; then
|
|
env LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam "$*"
|
|
else
|
|
/usr/bin/steam "$*"
|
|
fi |