nix-conf/user/bin/bell

8 lines
165 B
Plaintext
Raw Permalink Normal View History

2024-10-18 02:58:59 -04:00
#!/bin/sh
WAV="$XDG_DATA_HOME/bell.wav"
if [ -f $WAV ] && [ $(pgrep pw-play | wc -l) -le 10 ]; then
pw-play --volume 0.5 "$WAV" &
else
notify-send "Bell"
fi