From 61c1ece03ddcb12a49d3f0097d816d9fb8a096bb Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 3 Jul 2026 08:08:13 +0200 Subject: [PATCH] fix: improved startup notifications --- config/hypr/hyprland.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config/hypr/hyprland.lua b/config/hypr/hyprland.lua index ba0b9e1..5e7f549 100644 --- a/config/hypr/hyprland.lua +++ b/config/hypr/hyprland.lua @@ -18,16 +18,17 @@ if read_docked and laptop_config then is_docked = true end -hl.notification.create({ - text = "Config for " .. (laptop_config and "laptop" or "desktop") .. " loaded", - timeout = 5000, -}) if is_docked and #hl.get_monitors() <= 1 then hl.notification.create({ text = "Emergency docked mode fallback initiated: No external displays detected", timeout = 5000, }) is_docked = false +else + hl.notification.create({ + text = "Config for " .. (laptop_config and "laptop" or "desktop") .. " loaded", + timeout = 5000, + }) end -- Core