Cleanup stuff

This commit is contained in:
2023-11-14 20:54:20 -08:00
parent a502b72299
commit 5d80c98c1f
12 changed files with 24 additions and 10 deletions

8
old/x11/reset-saver-daemon.sh Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/zsh
while true; do
if pactl list sink-inputs | grep -i -B13 'firefox' | grep 'Corked: no' >/dev/null || pactl list sink-inputs | grep -i -B13 'chromium' | grep 'Corked: no' >/dev/null; then
echo reset
xset s reset
fi
sleep 1m
done