8 lines
208 B
Bash
Executable file
8 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if pkill -0 -f wayland-idle-inhibitor; then
|
|
pkill -f wayland-idle-inhibitor
|
|
else
|
|
wayland-idle-inhibitor &
|
|
fi
|
|
# TODO: Uncomment when force-poll feature is merged
|
|
# eww poll idleinhibit
|