diff options
author | Chris <hostinspace@gmail.com> | 2018-09-25 13:56:29 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-09-25 13:56:29 +0200 |
commit | 5e1d351339d9ea10023fbf175efcd0515cea0a94 (patch) | |
tree | 3bd2008e4b4e8e7a456df287c8bde59d7e37712b /plugins/bgnotify | |
parent | 14fead09641c17eb87e573e13b3c750bb98ea8cf (diff) | |
download | zsh-5e1d351339d9ea10023fbf175efcd0515cea0a94.tar.gz zsh-5e1d351339d9ea10023fbf175efcd0515cea0a94.tar.bz2 zsh-5e1d351339d9ea10023fbf175efcd0515cea0a94.zip |
bgnotify: use double dash in kdialog title option (#7153)
The options for kdialog in KDE use double dashes
Diffstat (limited to 'plugins/bgnotify')
-rw-r--r-- | plugins/bgnotify/bgnotify.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bgnotify/bgnotify.plugin.zsh b/plugins/bgnotify/bgnotify.plugin.zsh index 459f5214e..b3a6890b8 100644 --- a/plugins/bgnotify/bgnotify.plugin.zsh +++ b/plugins/bgnotify/bgnotify.plugin.zsh @@ -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 |