web-dev-qa-db-ja.com

notify-sendを介して通常緊急通知を送信する

私は現在15.04(Vivid Vervet)にいるので、次のように緊急度をcriticalに設定して送信しない限り、表示する通知を取得できないようです。

notify-send -u critical "IRC" "This is a critical IRC notification

これとは異なり、動作しません:

notify-send -u normal "IRC" "This is a normal IRC notification"

irssi-libnotify をトラブルシューティングするためのテストとしてこれを使用しています。これは、通知をサーバーに正しく送信していますが、通常の緊急度であるため表示されません。回避策としてpythonスクリプトを変更したくないのは、これが将来のパッケージの問題になる可能性があるためです。

3
abdl-dev

正しい構文は

notify-send [OPTIONS] <summary> [body]

例えば:

notify-send -u normal "Hello World" "Have a Nice day"

man notify-send をご覧ください

他のライブラリを使用したい場合(irssi-libnotifyの場合)にバグがある場合は、 GitHub に問題を作成します。


notify-send -u critical "IRC" "This is a critical IRC notification"

enter image description here

1
A.B.