mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
swaybar: add StatusNotifierWatcher to tray
This commit is contained in:
parent
ef555012fa
commit
02df3f67aa
5 changed files with 242 additions and 0 deletions
|
@ -12,12 +12,16 @@
|
|||
|
||||
struct swaybar;
|
||||
struct swaybar_output;
|
||||
struct swaybar_watcher;
|
||||
|
||||
struct swaybar_tray {
|
||||
struct swaybar *bar;
|
||||
|
||||
int fd;
|
||||
sd_bus *bus;
|
||||
|
||||
struct swaybar_watcher *watcher_xdg;
|
||||
struct swaybar_watcher *watcher_kde;
|
||||
};
|
||||
|
||||
struct swaybar_tray *create_tray(struct swaybar *bar);
|
||||
|
|
18
include/swaybar/tray/watcher.h
Normal file
18
include/swaybar/tray/watcher.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef _SWAYBAR_TRAY_WATCHER_H
|
||||
#define _SWAYBAR_TRAY_WATCHER_H
|
||||
|
||||
#include "swaybar/tray/tray.h"
|
||||
#include "list.h"
|
||||
|
||||
struct swaybar_watcher {
|
||||
char *interface;
|
||||
sd_bus *bus;
|
||||
list_t *hosts;
|
||||
list_t *items;
|
||||
int version;
|
||||
};
|
||||
|
||||
struct swaybar_watcher *create_watcher(char *protocol, sd_bus *bus);
|
||||
void destroy_watcher(struct swaybar_watcher *watcher);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue