1
0

Add workspace change sound

Dieser Commit ist enthalten in:
Dejvino 2021-01-09 14:46:38 +01:00
Ursprung d14b331a6d
Commit a0ed0e7ec3
3 geänderte Dateien mit 33 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -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"

Datei anzeigen

@ -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

Binäre Datei nicht angezeigt.