diff options
| author | Drew DeVault <sir@cmpwn.com> | 2016-02-27 16:18:50 -0500 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2016-02-27 16:18:50 -0500 |
| commit | 3453910c3e887be900c69394b738e34d9d8ba095 (patch) | |
| tree | 28e0d8d72557ac57a2f9aed5c94818c8ba20e97f /include/bar/bar.h | |
| parent | 5ff3fb1c0472d974f74c0329a10895cc76c83a55 (diff) | |
| parent | 67bbcceba1433e41b5edfca32532b7d55a39a395 (diff) | |
Merge pull request #492 from mikkeloscar/swaybar-multi-output
Display single swaybar on multiple outputs
Diffstat (limited to 'include/bar/bar.h')
| -rw-r--r-- | include/bar/bar.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/bar/bar.h b/include/bar/bar.h index 89496da6..c20efc55 100644 --- a/include/bar/bar.h +++ b/include/bar/bar.h @@ -8,8 +8,7 @@ struct bar { struct config *config; struct status_line *status; - struct output *output; - /* list_t *outputs; */ + list_t *outputs; int ipc_event_socketfd; int ipc_socketfd; @@ -22,6 +21,7 @@ struct output { struct registry *registry; list_t *workspaces; char *name; + int idx; }; struct workspace { @@ -35,7 +35,12 @@ struct workspace { /** * Setup bar. */ -void bar_setup(struct bar *bar, const char *socket_path, const char *bar_id, int desired_output); +void bar_setup(struct bar *bar, const char *socket_path, const char *bar_id); + +/** + * Create new output struct from name. + */ +struct output *new_output(const char *name); /** * Bar mainloop. |
