summaryrefslogtreecommitdiffstats
path: root/include/swaybar/bar.h
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-04-23 23:40:00 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-04-24 07:16:37 -0600
commitdc7a3930a7ffd4435c9215c7cce0afa37d06c91f (patch)
tree1b5f0bbbd832c7dc6b4407cd16dbc4ece26a666b /include/swaybar/bar.h
parentswaybar: hide mode visibility improvements (diff)
downloadsway-dc7a3930a7ffd4435c9215c7cce0afa37d06c91f.tar.gz
sway-dc7a3930a7ffd4435c9215c7cce0afa37d06c91f.tar.zst
sway-dc7a3930a7ffd4435c9215c7cce0afa37d06c91f.zip
swaybar: add multiseat support
This just adds multiseat support to swaybar
Diffstat (limited to 'include/swaybar/bar.h')
-rw-r--r--include/swaybar/bar.h4
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 {
31 struct zwlr_layer_shell_v1 *layer_shell; 31 struct zwlr_layer_shell_v1 *layer_shell;
32 struct zxdg_output_manager_v1 *xdg_output_manager; 32 struct zxdg_output_manager_v1 *xdg_output_manager;
33 struct wl_shm *shm; 33 struct wl_shm *shm;
34 struct wl_seat *seat;
35 34
36 struct swaybar_config *config; 35 struct swaybar_config *config;
37 struct swaybar_pointer pointer;
38 struct swaybar_touch touch;
39 struct status_line *status; 36 struct status_line *status;
40 37
41 struct loop *eventloop; 38 struct loop *eventloop;
@@ -44,6 +41,7 @@ struct swaybar {
44 int ipc_socketfd; 41 int ipc_socketfd;
45 42
46 struct wl_list outputs; // swaybar_output::link 43 struct wl_list outputs; // swaybar_output::link
44 struct wl_list seats; // swaybar_seat::link
47 45
48#if HAVE_TRAY 46#if HAVE_TRAY
49 struct swaybar_tray *tray; 47 struct swaybar_tray *tray;