mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
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
|