Files
omarchy/bin/omarchy-toggle-idle
2025-07-09 11:22:43 -07:00

10 lines
216 B
Bash
Executable File

#!/usr/bin/env bash
if pgrep -x hypridle > /dev/null; then
pkill -x hypridle
notify-send "Stop locking computer when idle"
else
setsid hypridle &> /dev/null &
notify-send "Now locking computer when idle"
fi