web-dev-qa-db-ja.com

最近のGNOME通知を表示

最近の通知を表示できるアプリ/コマンドはありますか?

できればテキストベース。

各通知の通知タイムアウトも表示したいと思います。 ;)

4
Jason Hunter

以前に送信したメッセージを取得するためのコマンドはありません Desktop Notifications Specification なので、取得後に破棄されると思います。

ただし、次のようにdbus-monitorコマンドを使用してこれらを観察できます。

$ dbus-monitor "interface='org.freedesktop.Notifications'"

簡単な通知を送信する:

$ notify-send "Hi there!"

次の情報を含む結果:

method call time=1555095758.597788 sender=:1.385 -> destination=:1.386 serial=6 path=/org/freedesktop/Notifications; interface=org.freedesktop.Notifications; member=GetServerInformation
method call time=1555095758.601101 sender=:1.385 -> destination=:1.386 serial=7 path=/org/freedesktop/Notifications; interface=org.freedesktop.Notifications; member=Notify
   string "notify-send"
   uint32 0
   string ""
   string "Hi there!"
   string ""
   array [
   ]
   array [
      dict entry(
         string "urgency"
         variant             byte 1
      )
   ]
   int32 -1
signal time=1555095765.734845 sender=:1.386 -> destination=:1.385 serial=15 path=/org/freedesktop/Notifications; interface=org.freedesktop.Notifications; member=NotificationClosed
   uint32 1
   uint32 1

時間フィールドはUNIXタイムスタンプで、次のように変換できます。

$ date -d @1555095765
Fri Apr 12 21:02:45 CEST 2019
4
Nykakin
0
anon