mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-02-22 11:29:02 +00:00
9 lines
192 B
Bash
Executable file
9 lines
192 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if pgrep swayidle >/dev/null; then
|
|
killall swayidle
|
|
notify-send "Idle" "Idle timeouts disabled"
|
|
else
|
|
swayidle & disown
|
|
notify-send "Idle" "Idle timeouts enabled"
|
|
fi
|