kernel still breaking. updated name which may have been issue

This commit is contained in:
tumillanino
2026-04-09 15:58:55 +10:00
parent 1c59f8a718
commit c6ffa3591f
155 changed files with 6219 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# User-configurable Gamescope options
GAMESCOPE_SESSION_CONFIG="$HOME/.config/default/gamescope-session-config"
if [ -f $GAMESCOPE_SESSION_CONFIG ];
then
source $GAMESCOPE_SESSION_CONFIG
fi
gamescope \
$GAMESCOPE_SESSION_OPTIONS \
-e -- steam -steamdeck -steamos3

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
if [[ "$XDG_SESSION_TYPE" == "wayland" ]]; then
# 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.
env LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam "$@"
else
/usr/bin/steam "$@"
fi