bgnotify: use double dash in kdialog title option (#7153)

The options for kdialog in KDE use double dashes
This commit is contained in:
Chris 2018-09-25 13:56:29 +02:00 committed by Marc Cornellà
parent 14fead0964
commit 5e1d351339

View File

@ -42,7 +42,7 @@ bgnotify () { ## args: (title, subtitle)
elif hash notify-send 2>/dev/null; then #ubuntu gnome!
notify-send "$1" "$2"
elif hash kdialog 2>/dev/null; then #ubuntu kde!
kdialog -title "$1" --passivepopup "$2" 5
kdialog --title "$1" --passivepopup "$2" 5
elif hash notifu 2>/dev/null; then #cygwyn support!
notifu /m "$2" /p "$1"
fi