blob: 45e7036916453d86d7eb80bb1aa61cc564a07e18 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
readonly tty="$(tty)"
[[ -f ~/.bashrc ]] && source ~/.bashrc
if [[ -z "$DISPLAY" && -z "$NIRI_LOADED" && "$tty" = /dev/tty1 ]]
then
export NIRI_LOADED=1
exec niri-session
fi
[[ -z "$DISPLAY" && "$tty" = /dev/tty2 ]] && exec start-hyprland
|