From 92ec5d58731ca3ca2288c4bae6d3e203936aab71 Mon Sep 17 00:00:00 2001 From: The_miro Date: Fri, 20 Feb 2026 11:12:40 +0100 Subject: [PATCH] now the notif shows for just long enough --- desktopenvs/hyprland/scripts/toggle-layout.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktopenvs/hyprland/scripts/toggle-layout.sh b/desktopenvs/hyprland/scripts/toggle-layout.sh index 2985804..6380712 100755 --- a/desktopenvs/hyprland/scripts/toggle-layout.sh +++ b/desktopenvs/hyprland/scripts/toggle-layout.sh @@ -3,10 +3,10 @@ statecon=$( hyprctl getoption general:layout | grep master ) #notify-send $statecon if [ "$statecon" != '' ]; then - notify-send "Layout: Dwindle" + notify-send -t 700 "Layout: Dwindle" hyprctl keyword general:layout dwindle else - notify-send "Layout: Master" + notify-send -t 700 "Layout: Master" hyprctl keyword general:layout master fi