aboutsummaryrefslogtreecommitdiffstats
path: root/include/swaybar/tray/tray.h
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-12-06 12:51:52 +0000
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-12-31 20:40:18 +0000
commit746600e6ed562db9395ac790b7749624006d80ad (patch)
tree2eee23a13139295d9438d9224a645af80291be4f /include/swaybar/tray/tray.h
parentswaybar: add StatusNotifierWatcher to tray (diff)
downloadsway-746600e6ed562db9395ac790b7749624006d80ad.tar.gz
sway-746600e6ed562db9395ac790b7749624006d80ad.tar.zst
sway-746600e6ed562db9395ac790b7749624006d80ad.zip
swaybar: implement icon themes and lookup for tray
Diffstat (limited to 'include/swaybar/tray/tray.h')
-rw-r--r--include/swaybar/tray/tray.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/swaybar/tray/tray.h b/include/swaybar/tray/tray.h
index cc3e8133..8e15fb86 100644
--- a/include/swaybar/tray/tray.h
+++ b/include/swaybar/tray/tray.h
@@ -9,6 +9,7 @@
9#endif 9#endif
10#include <cairo.h> 10#include <cairo.h>
11#include <stdint.h> 11#include <stdint.h>
12#include "list.h"
12 13
13struct swaybar; 14struct swaybar;
14struct swaybar_output; 15struct swaybar_output;
@@ -22,6 +23,9 @@ struct swaybar_tray {
22 23
23 struct swaybar_watcher *watcher_xdg; 24 struct swaybar_watcher *watcher_xdg;
24 struct swaybar_watcher *watcher_kde; 25 struct swaybar_watcher *watcher_kde;
26
27 list_t *basedirs; // char *
28 list_t *themes; // struct swaybar_theme *
25}; 29};
26 30
27struct swaybar_tray *create_tray(struct swaybar *bar); 31struct swaybar_tray *create_tray(struct swaybar *bar);