12 lines
160 B
Bash
Executable file
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
|