aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rwxr-xr-x.config/yambar/scripts/idleinhibit.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/yambar/scripts/idleinhibit.sh b/.config/yambar/scripts/idleinhibit.sh
index ffc8baa..f7af764 100755
--- a/.config/yambar/scripts/idleinhibit.sh
+++ b/.config/yambar/scripts/idleinhibit.sh
@@ -5,13 +5,13 @@ function toggle {
if pgrep "swayidle" > /dev/null
then
pkill swayidle
- notify-send -r 5556 -u normal " Swayidle Inactive"
+ notify-send -u normal " Swayidle Inactive" --hint=string:x-canonical-private-synchronous:idleinhibit
else
swayidle -w \
timeout 300 'swaylock -f -i ~/.cache/wallpaper' \
timeout 600 'wlopm --off \*;swaylock -F -i ~/.cache/wallpaper' resume 'wlopm --on \*' \
before-sleep 'swaylock -f -i $wallpaper' &
- notify-send -r 5556 -u normal " Swayidle Active"
+ notify-send -u normal " Swayidle Active" --hint=string:x-canonical-private-synchronous:idleinhibit
fi
}