#!/bin/sh vol=${BEEP_VOL:-0.5} snd=${BEEP_SND:-$HOME/Music/sounds/miui/complete.ogg} subject=${BEEP_SUB:-beep} message=${BEEP_MSG:-"ringing the bell..."} icon=${BEEP_ICN:-/usr/share/icons/Adwaita/scalable/status/task-due-symbolic.svg} notify-send -a beep -u normal -i "${icon}" \ "${subject}" "${message}" & tput bel & exec paplay \ --property=media.role=event \ --volume="${vol}" \ "${snd}"