nixos-config/scripts/_sway_idle_toggle

12 lines
160 B
Plaintext
Raw Normal View History

#!/bin/sh
swayidlectl() {
systemctl --user $1 swayidle.service
}
if swayidlectl status > /dev/null; then
swayidlectl stop
else
swayidlectl start
fi