
The service enables or disables swayidle inhibition depending on whether any audio plays or not. It replaces the activation of inhibition for fullscreen browser windows.
11 lines
222 B
Bash
Executable file
11 lines
222 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if grep -s -l -v "closed" /proc/asound/card*/pcm*/sub*/status; then
|
|
swaymsg inhibit_idle open
|
|
printf "Idle inhibition is ON."
|
|
else
|
|
swaymsg inhibit_idle none
|
|
printf "Idle inhibition is OFF."
|
|
fi
|