Add workspace change sound
This commit is contained in:
parent
d14b331a6d
commit
a0ed0e7ec3
@ -38,4 +38,6 @@ exec "mako"
|
|||||||
# example Welcome message
|
# example Welcome message
|
||||||
exec "sleep 2; notify-send 'Welcome!' 'Your Pip-Boy is ready to be used.' --icon=dialog-information"
|
exec "sleep 2; notify-send 'Welcome!' 'Your Pip-Boy is ready to be used.' --icon=dialog-information"
|
||||||
|
|
||||||
|
# Sound daemon
|
||||||
|
exec "worskpace_sounds_daemon"
|
||||||
|
|
||||||
|
31
usr/local/bin/workspace_sounds_daemon
Executable file
31
usr/local/bin/workspace_sounds_daemon
Executable file
@ -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
usr/local/share/sounds/static.ogg
Normal file
BIN
usr/local/share/sounds/static.ogg
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user