mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-09 12:45:05 +00:00
7 lines
163 B
Plaintext
7 lines
163 B
Plaintext
|
#!/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
|