12 lines
246 B
Bash
Executable File
12 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Toggle hypridle idle locking
|
|
|
|
if pgrep -x hypridle >/dev/null; then
|
|
pkill -x hypridle
|
|
else
|
|
uwsm-app -- hypridle >/dev/null 2>&1 &
|
|
fi
|
|
|
|
omarchy-shell-ipc --if-running bar refreshIndicators >/dev/null 2>&1 || true
|