5 lines
101 B
Bash
5 lines
101 B
Bash
# Auto-start Hyprland on TTY1
|
|
if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" -eq 1 ]; then
|
|
exec Hyprland
|
|
fi
|