ソフトウェアエンジニアの日常の雑記

日々思ったことをまとめます

Linuxでのコマンドでのデスクトップ通知

Linuxのコマンドラインの処理でちょっと処理に時間がかかるものとかあったりするときに便利なtips(大きなファイルのコピーとかコマンドラインでのエンコードとか)
コマンドラインでのデスクトップ通知が下記のコマンドで可能になる。

 $ notify-send  メッセージ

これでデスクトップ通知ができる。レベルや通知時間などのオプションも設定できる。

 $ notify-send  --help
Application Options:
  -u, --urgency=LEVEL               Specifies the urgency level (low, normal, critical).
  -t, --expire-time=TIME            Specifies the timeout in milliseconds at which to expire the notification.
  -i, --icon=ICON[,ICON...]         Specifies an icon filename or stock icon to display.
  -c, --category=TYPE[,TYPE...]     Specifies the notification category.
  -h, --hint=TYPE:NAME:VALUE        Specifies basic extra data to pass. Valid types are int, double, string and byte.
  -v, --version                     Version of the package.

ちょっと時間がかかる処理の時にセミコロン";"をつけてあげて設定しておくと便利だろう。