diff options
author | Brian Ashworth <[email protected]> | 2019-04-23 23:40:00 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2019-04-24 07:16:37 -0600 |
commit | dc7a3930a7ffd4435c9215c7cce0afa37d06c91f (patch) | |
tree | 1b5f0bbbd832c7dc6b4407cd16dbc4ece26a666b /include/swaybar/bar.h | |
parent | 583ceff6f6129b5c569ad1eb499cffc526a14d1c (diff) |
swaybar: add multiseat support
This just adds multiseat support to swaybar
Diffstat (limited to 'include/swaybar/bar.h')
-rw-r--r-- | include/swaybar/bar.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h index 84619237..10984ab0 100644 --- a/include/swaybar/bar.h +++ b/include/swaybar/bar.h @@ -31,11 +31,8 @@ struct swaybar { struct zwlr_layer_shell_v1 *layer_shell; struct zxdg_output_manager_v1 *xdg_output_manager; struct wl_shm *shm; - struct wl_seat *seat; struct swaybar_config *config; - struct swaybar_pointer pointer; - struct swaybar_touch touch; struct status_line *status; struct loop *eventloop; @@ -44,6 +41,7 @@ struct swaybar { int ipc_socketfd; struct wl_list outputs; // swaybar_output::link + struct wl_list seats; // swaybar_seat::link #if HAVE_TRAY struct swaybar_tray *tray; |