Files
omarchy/bin/omarchy-toggle-idle

10 lines
215 B
Plaintext
Raw Normal View History

2025-07-16 20:15:56 -07:00
#!/bin/bash
2025-07-16 20:15:56 -07:00
if pgrep -x hypridle >/dev/null; then
pkill -x hypridle
notify-send "Stop locking computer when idle"
else
uwsm app -- hypridle >/dev/null 2>&1 &
notify-send "Now locking computer when idle"
fi