aboutsummaryrefslogtreecommitdiff
path: root/include/swaybar/tray/tray.h
AgeCommit message (Collapse)AuthorLines
2020-12-16Fix swaybar tray for non-systemdFurkan Sahin-1/+1
Meson's generated config.h header defines false macros as 0, not undefined. This means that the header line, which was checking for the definition existing, not a non-zero value, was incorrect. Now the swaybar tray can be used with systemd, elogind, or basu.
2020-12-02build: add basu as sd-bus providerFurkan Sahin-0/+2
2020-12-02build: introduce sd-bus-provider optionFurkan Sahin-2/+2
This allows to select a specific provider for the sd-bus library.
2018-12-07swaybar: add StatusNotifierItem to trayFurkan Sahin-1/+1
2018-12-07swaybar: add StatusNotifierHost to trayFurkan Sahin-0/+4
2018-12-06swaybar: implement icon themes and lookup for trayFurkan Sahin-0/+4
2018-12-05swaybar: add StatusNotifierWatcher to trayFurkan Sahin-0/+4
2018-10-28swaybar: add tray interfaceFurkan Sahin-0/+28
2018-09-30Remove declarations that do no have definitionsFurkan Sahin-32/+0
There is a couple of leftover header files/declarations, which were fronting implementations that are long gone. Let's get rid of them.
2017-11-05Fix init_tray function declarationFurkan Sahin-1/+1
This fixes compilation failure: error: call to function 'init_tray' without a real prototype
2017-06-07Reorganize Tray CodeFurkan Sahin-4/+10
Remove tray code from bar.c and render.c
2017-06-07Implement Tray IconsFurkan Sahin-0/+26
This commit implements the StatusNotifierItem protocol, and enables swaybar to show tray icons. It also uses `xembedsniproxy` in order to communicate with xembed applications. The tray is completely optional, and can be disabled on compile time with the `enable-tray` option. Or on runtime with the bar config option `tray_output none`. Overview of changes: In swaybar very little is changed outside the tray subfolder except that all events are now polled in `event_loop.c`, this creates no functional difference. Six bar configuration options were added, these are detailed in sway-bar(5) The tray subfolder is where all protocol implementation takes place and is organised as follows: tray/sni_watcher.c: This file contains the StatusNotifierWatcher. It keeps track of items and hosts and reports when they come or go. tray/tray.c This file contains the StatusNotifierHost. It keeps track of sway's version of the items and represents the tray itself. tray/sni.c This file contains the StatusNotifierItem struct and all communication with individual items. tray/icon.c This file implements the icon theme protocol. It allows for finding icons by name, rather than by pixmap. tray/dbus.c This file allows for asynchronous DBus communication. See #986 #343