blob: db63dd2bf98f633b65a717e0c60ce22aba4540ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# dont attempt to launch a graphical
# env in tmux
if [ -n "$TMUX" ]; then
return
fi
# only launch hyprland on tty 1
if [ -z "${WAYLAND_DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
export XDG_CURRENT_DESKTOP=Hyprland
exec Hyprland
fi
|