blob: 4815b367a5917e4ad27cd1b57d2754ff8b698290 (
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 dbus-run-session Hyprland
fi
|