mirror of https://codeberg.org/anemofilia/zero
11 lines
237 B
Bash
11 lines
237 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
escape() {
|
||
|
printf "%s" "$1" | sed 's#\#\\#g'
|
||
|
}
|
||
|
|
||
|
notify-send --urgency=normal --expire-time=0 --category=Mail "[$BUFFER] $SENDER" "$(escape "$MESSAGE")"
|
||
|
|
||
|
mpv ~/.guix-home/profile/share/sounds/freedesktop/stereo/complete.oga
|
||
|
|