Files
omarchy/bin/omarchy-toggle-idle
David Heinemeier Hansson 4f565b743a Simpler shebang
2025-07-16 20:15:56 -07:00

10 lines
206 B
Bash
Executable File

#!/bin/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