forked from Shinonome/dots-hyprland
652104a358
Hyprland 0.53 introduced start-hyprland as the recommended launcher when starting Hyprland from a TTY. This PR updates the relevant files to avoid some messages on tty autologin.
6 lines
159 B
Fish
6 lines
159 B
Fish
# Auto start Hyprland on tty1
|
|
if test -z "$DISPLAY" ;and test "$XDG_VTNR" -eq 1
|
|
mkdir -p ~/.cache
|
|
exec start-hyprland > ~/.cache/hyprland.log 2>&1
|
|
end
|