diff options
Diffstat (limited to 'sway/workspace.h')
-rw-r--r-- | sway/workspace.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sway/workspace.h b/sway/workspace.h new file mode 100644 index 00000000..bc7eed55 --- /dev/null +++ b/sway/workspace.h @@ -0,0 +1,13 @@ +#ifndef _SWAY_WORKSPACE_H +#define _SWAY_WORKSPACE_H + +#include <wlc/wlc.h> +#include "list.h" +#include "layout.h" + +char *workspace_next_name(); +swayc_t *workspace_create(const char*); +swayc_t *workspace_find_by_name(const char*); +void workspace_switch(swayc_t*); + +#endif |