From 21475d4dd76c8407e66c385de248587549ecd53c Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 22 Jun 2026 09:10:19 +0200 Subject: [PATCH] feat: docked fallback now displays notification --- config/hypr/hyprland.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/hypr/hyprland.lua b/config/hypr/hyprland.lua index 994c061..ba0b9e1 100644 --- a/config/hypr/hyprland.lua +++ b/config/hypr/hyprland.lua @@ -22,7 +22,11 @@ hl.notification.create({ text = "Config for " .. (laptop_config and "laptop" or "desktop") .. " loaded", timeout = 5000, }) -if #hl.get_monitors() <= 1 then +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 end