diff options
author | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-01-24 02:19:08 +0100 |
---|---|---|
committer | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-01-24 14:22:19 +0100 |
commit | c6fc0033e1bf8aa1deb2c44284049041766361f8 (patch) | |
tree | 9512609ef9f48b42bf48fb82e7bdddaf2e647ae4 /swaybar/state.h | |
parent | 6140f9c42c4f09142d647c96236cc030689e6f34 (diff) | |
download | sway-c6fc0033e1bf8aa1deb2c44284049041766361f8.tar.xz |
swaybar: move core functionality to state.c
Diffstat (limited to 'swaybar/state.h')
-rw-r--r-- | swaybar/state.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/swaybar/state.h b/swaybar/state.h index e09807d0..985002f8 100644 --- a/swaybar/state.h +++ b/swaybar/state.h @@ -33,9 +33,14 @@ struct workspace { }; /** - * Initialize state. + * Setup state. */ -struct swaybar_state *init_state(); +void state_setup(struct swaybar_state *state, const char *socket_path, const char *bar_id, int desired_output); + +/** + * State mainloop. + */ +void state_run(struct swaybar_state *state); /** * free workspace list. @@ -43,8 +48,8 @@ struct swaybar_state *init_state(); void free_workspaces(list_t *workspaces); /** - * Free state struct. + * Teardown state. */ -void free_state(struct swaybar_state *state); +void state_teardown(struct swaybar_state *state); #endif /* _SWAYBAR_STATE_H */ |