scripts/dunst_message.sh

13 lines
260 B
Bash
Raw Normal View History

#!/bin/sh
appname=$1
sound="message"
2022-04-04 00:01:26 +03:00
if [ "$appname" = "Telegram Desktop" ] || [ "$appname" = "Element"]; then
sound="window-attention"
fi
2022-04-03 22:54:40 +03:00
echo "$1" >> /tmp/test
echo "$sound" >> /tmp/test
mpv --no-terminal /usr/share/sounds/freedesktop/stereo/$sound.oga&