feat(bash -> exec): Now runs gamescope on tty5 login

This commit is contained in:
GaspardCulis 2024-06-27 23:11:56 +02:00
parent a61e003ca8
commit 72ec110591
No known key found for this signature in database
GPG key ID: BC18146756955609

View file

@ -5,6 +5,11 @@ if [ "$(tty)" = /dev/tty1 ]; then
exec Hyprland
fi
# Start DE if on tty1
if [ "$(tty)" = /dev/tty5 ]; then
exec gamescope -e -W 2560 -H 1440 -r 165 -- steam
fi
# Start in tmux by default
# [[ $TERM != "screen" ]] && [ -z "$TMUX" ] && exec tmux