Add workspace change sound

This commit is contained in:
Dejvino 2021-01-09 14:46:38 +01:00
vanhempi d14b331a6d
commit a0ed0e7ec3
3 muutettua tiedostoa jossa 33 lisäystä ja 0 poistoa

Näytä tiedosto

@ -38,4 +38,6 @@ exec "mako"
# example Welcome message
exec "sleep 2; notify-send 'Welcome!' 'Your Pip-Boy is ready to be used.' --icon=dialog-information"
# Sound daemon
exec "worskpace_sounds_daemon"

Näytä tiedosto

@ -0,0 +1,31 @@
#!/bin/bash
SOUND=/usr/local/share/sounds/static.ogg
if [ ! -f "$SOUND" ]; then
echo "File '$SOUND' not found." >&2
exit 1
fi
function events() {
swaymsg -m -t subscribe "['workspace']"
}
function daemon() {
printf "p" # PAUSE
while [[ true ]]; do
read
printf " " # PLAY
while read -t 0.1; do
sleep 0.1
done
printf "p" # PAUSE
done
}
function static() {
mplayer -loop 0 $SOUND
}
events | daemon | static

Binary file not shown.