From 72ec110591fba054bfe9c2d0023cf82b604e654f Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Thu, 27 Jun 2024 23:11:56 +0200 Subject: [PATCH] feat(bash -> exec): Now runs gamescope on tty5 login --- shell/bash/.bash_exec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell/bash/.bash_exec b/shell/bash/.bash_exec index 06e5179..f8b10c5 100644 --- a/shell/bash/.bash_exec +++ b/shell/bash/.bash_exec @@ -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