From 3dc4dcc4ca0dee958a56f43e8a635a6d961e7ccc Mon Sep 17 00:00:00 2001 From: Joshua Yun Date: Wed, 12 Mar 2025 01:28:59 -0500 Subject: Systray patch --- systray/watcher.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 systray/watcher.h (limited to 'systray/watcher.h') diff --git a/systray/watcher.h b/systray/watcher.h new file mode 100644 index 0000000..0178587 --- /dev/null +++ b/systray/watcher.h @@ -0,0 +1,34 @@ +#ifndef WATCHER_H +#define WATCHER_H + +#include +#include +#include + +/* + * The FDO spec says "org.freedesktop.StatusNotifierWatcher"[1], + * but both the client libraries[2,3] actually use "org.kde.StatusNotifierWatcher" + * + * [1] https://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/ + * [2] https://github.com/AyatanaIndicators/libayatana-appindicator-glib + * [3] https://invent.kde.org/frameworks/kstatusnotifieritem + */ +#define SNW_NAME "org.kde.StatusNotifierWatcher" +#define SNW_OPATH "/StatusNotifierWatcher" +#define SNW_IFACE "org.kde.StatusNotifierWatcher" + +typedef struct { + struct wl_list items; + struct wl_list trays; + struct wl_event_loop *loop; + DBusConnection *conn; +} Watcher; + +int watcher_start (Watcher *watcher, DBusConnection *conn, + struct wl_event_loop *loop); +void watcher_stop (Watcher *watcher); + +int watcher_get_n_items (const Watcher *watcher); +void watcher_update_trays (Watcher *watcher); + +#endif /* WATCHER_H */ -- cgit v1.2.3