diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2023-06-24 00:54:08 +0900 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2023-06-24 00:54:08 +0900 |
| commit | fb533ed88a553392f815c3e060b23e4d945e43f6 (patch) | |
| tree | fe747c7240c133f8332e4959aa7e4367b639d35e | |
| parent | 196f357ed9008995e7ff83552bed47e72c4c457d (diff) | |
swaybar: remove the argument of StatusNotifierHostRegistered
According to
https://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/StatusNotifierWatcher/
there is no argument for the StatusNotifierHostRegistered signal.
| -rw-r--r-- | swaybar/tray/watcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/tray/watcher.c b/swaybar/tray/watcher.c index 551e1d12..2458a8c2 100644 --- a/swaybar/tray/watcher.c +++ b/swaybar/tray/watcher.c @@ -106,7 +106,7 @@ static int register_host(sd_bus_message *msg, void *data, sd_bus_error *error) { sway_log(SWAY_DEBUG, "Registering Status Notifier Host '%s'", service); list_add(watcher->hosts, strdup(service)); sd_bus_emit_signal(watcher->bus, obj_path, watcher->interface, - "StatusNotifierHostRegistered", "s", service); + "StatusNotifierHostRegistered", ""); } else { sway_log(SWAY_DEBUG, "Status Notifier Host '%s' already registered", service); } |
