aboutsummaryrefslogtreecommitdiffstats
path: root/include/workspace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/workspace.h')
-rw-r--r--include/workspace.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/workspace.h b/include/workspace.h
new file mode 100644
index 00000000..59a6d526
--- /dev/null
+++ b/include/workspace.h
@@ -0,0 +1,16 @@
1#ifndef _SWAY_WORKSPACE_H
2#define _SWAY_WORKSPACE_H
3
4#include <wlc/wlc.h>
5#include "list.h"
6#include "layout.h"
7
8extern swayc_t *active_workspace;
9
10char *workspace_next_name(void);
11swayc_t *workspace_create(const char*);
12swayc_t *workspace_find_by_name(const char*);
13void workspace_switch(swayc_t*);
14void layout_log(const swayc_t *c, int depth);
15
16#endif