fix: Send Termighty as app name in notify-send.

master
Fierre 3 years ago
parent 32c9edbbf4
commit 9497777f4f

@ -6,7 +6,7 @@ AUDIO="audio/dailyblessing.ogg"
# Send via libnotify if available
if [ -x `which notify-send` ]
then
notify-send "Daily Blessing" "Your daily blessing is ready." --icon=weather-clear --expire-time=$NOTIFY_LENGTH
notify-send -a "Termighty" "Daily Blessing" "Your daily blessing is ready." --icon=weather-clear --expire-time=$NOTIFY_LENGTH
fi
# Play a sound if available

@ -7,7 +7,7 @@ AUDIO="audio/double.ogg"
# Send via libnotify if available
if [ -x `which notify-send` ]
then
notify-send "Double" "Double is running for ${DURATION} min" --icon=face-smile-big --expire-time=$NOTIFY_LENGTH
notify-send -a "Termighty" "Double" "Double is running for ${DURATION} min" --icon=face-smile-big --expire-time=$NOTIFY_LENGTH
fi
# Play a sound if available

@ -7,7 +7,7 @@ AUDIO="audio/globalquest.ogg"
# Send via libnotify if available
if [ -x `which notify-send` ]
then
notify-send "Global Quest" "Global quest #${QUESTID} starting soon." --icon=applications-games --expire-time=$NOTIFY_LENGTH
notify-send -a "Termighty" "Global Quest" "Global quest #${QUESTID} starting soon." --icon=applications-games --expire-time=$NOTIFY_LENGTH
fi
# Play a sound if available

@ -7,7 +7,7 @@ AUDIO="audio/quest.ogg"
# Send via libnotify if available
if [ -x `which notify-send` ]
then
notify-send "Quest" "You may now quest again." --icon=applications-games --expire-time=$NOTIFY_LENGTH
notify-send -a "Termighty" "Quest" "You may now quest again." --icon=applications-games --expire-time=$NOTIFY_LENGTH
fi
# Play a sound if available

@ -7,7 +7,7 @@ AUDIO="audio/tell.ogg"
# Send via libnotify if available
if [ -x `which notify-send` ]
then
notify-send "Tell" "Tell received from ${SENDER}." --icon=mail-message-new --expire-time=$NOTIFY_LENGTH
notify-send -a "Termighty" "Tell" "Tell received from ${SENDER}." --icon=mail-message-new --expire-time=$NOTIFY_LENGTH
fi
# Play a sound if available

Loading…
Cancel
Save