From e9d6ed874c3ad2f7dca4ba6c6942abdc91aa2af2 Mon Sep 17 00:00:00 2001 From: VietNguyenx <101798660+VietNguyenVN@users.noreply.github.com> Date: Wed, 31 Dec 2025 00:04:38 +0700 Subject: [PATCH 1/2] =?UTF-8?q?Update=20auto-Hypr.sh=20to=20use=20start-hy?= =?UTF-8?q?prland=20instead=20(for=20Hyprland=20=E2=89=A5=200.53)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hyprland 0.53 now introduced start-hyprland as the recommended launcher when starting Hyprland from a TTY --- dots/.config/zshrc.d/auto-Hypr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/zshrc.d/auto-Hypr.sh b/dots/.config/zshrc.d/auto-Hypr.sh index 55eca5e02..db893c13c 100644 --- a/dots/.config/zshrc.d/auto-Hypr.sh +++ b/dots/.config/zshrc.d/auto-Hypr.sh @@ -1,5 +1,5 @@ # Auto start Hyprland on tty1 if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" -eq 1 ]; then mkdir -p ~/.cache - exec Hyprland > ~/.cache/hyprland.log 2>&1 + exec start-hyprland > ~/.cache/hyprland.log 2>&1 fi From 652104a358f5d810e792baef6e17ec72b0b8b9f5 Mon Sep 17 00:00:00 2001 From: VietNguyenx <101798660+VietNguyenVN@users.noreply.github.com> Date: Wed, 31 Dec 2025 00:14:07 +0700 Subject: [PATCH 2/2] Update auto-Hypr.fish to use start-hyprland instead (Hyprland 0.53) 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. --- dots/.config/fish/auto-Hypr.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/fish/auto-Hypr.fish b/dots/.config/fish/auto-Hypr.fish index 711f31dbe..893451c44 100644 --- a/dots/.config/fish/auto-Hypr.fish +++ b/dots/.config/fish/auto-Hypr.fish @@ -1,5 +1,5 @@ # Auto start Hyprland on tty1 if test -z "$DISPLAY" ;and test "$XDG_VTNR" -eq 1 mkdir -p ~/.cache - exec Hyprland > ~/.cache/hyprland.log 2>&1 + exec start-hyprland > ~/.cache/hyprland.log 2>&1 end