2023-08-11 07:10:49 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
if [[ "$XDG_SESSION_TYPE" = "wayland" ]]; then
|
2023-08-11 18:55:29 +00:00
|
|
|
# https://github.com/Supreeeme/extest
|
|
|
|
# Extest is a drop in replacement for the X11 XTEST extension.
|
|
|
|
# It creates a virtual device with the uinput kernel module.
|
|
|
|
# It's been primarily developed for allowing the desktop functionality
|
|
|
|
# on the Steam Controller to work while Steam is open on Wayland.
|
|
|
|
# Also supports Steam Input as a whole.
|
2023-08-11 07:10:49 +00:00
|
|
|
env LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam "$*"
|
|
|
|
else
|
|
|
|
/usr/bin/steam "$*"
|
|
|
|
fi
|