2023-09-28 10:52:20 +02:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
2024-06-01 03:35:15 +02:00
|
|
|
# Start DE if on tty1
|
|
|
|
if [ "$(tty)" = /dev/tty1 ]; then
|
|
|
|
exec Hyprland
|
|
|
|
fi
|
|
|
|
|
2024-06-27 23:11:56 +02:00
|
|
|
# Start DE if on tty1
|
|
|
|
if [ "$(tty)" = /dev/tty5 ]; then
|
|
|
|
exec gamescope -e -W 2560 -H 1440 -r 165 -- steam
|
|
|
|
fi
|
|
|
|
|
2024-06-01 03:13:28 +02:00
|
|
|
# Start in tmux by default
|
2024-06-03 09:31:24 +02:00
|
|
|
# [[ $TERM != "screen" ]] && [ -z "$TMUX" ] && exec tmux
|
2024-06-01 03:13:28 +02:00
|
|
|
|
2024-02-16 15:08:48 +01:00
|
|
|
if command -v jaaj &> /dev/null && command -v dotacat &> /dev/null; then
|
2023-11-29 11:46:27 +01:00
|
|
|
jaaj
|
|
|
|
fi
|
2024-06-01 03:13:28 +02:00
|
|
|
|