nixos-config/scripts/_sway_idle_toggle
2024-08-17 11:47:48 -03:00

12 lines
160 B
Bash
Executable file

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