tileos-settings-sway/usr/share/sway/scripts/idle-inhibitor.sh
Alexander Oakman 9c4aaa4207 Add screensaver inhibition control service
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.
2024-08-20 08:28:32 +03:00

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