summaryrefslogtreecommitdiffstats
path: root/include/workspace.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-09-13 19:46:16 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-09-13 19:46:16 -0400
commite505abfe75923d06098f6230e5a7ba39c091d3ce (patch)
treefc90bdf0afed21d725f6ee7a9245e397e1577517 /include/workspace.h
parentMerge pull request #179 from taiyu-len/master (diff)
downloadsway-e505abfe75923d06098f6230e5a7ba39c091d3ce.tar.gz
sway-e505abfe75923d06098f6230e5a7ba39c091d3ce.tar.zst
sway-e505abfe75923d06098f6230e5a7ba39c091d3ce.zip
Revert "new_workspace null behavior + testmap functions + regex"
This reverts commit e1d18e42a8f3a597b9bf5f1bb2ab6c346e4e7983. Fixes #180 cc @taiyu-len
Diffstat (limited to 'include/workspace.h')
-rw-r--r--include/workspace.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/include/workspace.h b/include/workspace.h
index 3a63ea38..7343b055 100644
--- a/include/workspace.h
+++ b/include/workspace.h
@@ -7,17 +7,13 @@
7 7
8extern char *prev_workspace_name; 8extern char *prev_workspace_name;
9 9
10// Search for available workspace name on output from config 10char *workspace_next_name(void);
11const char *workspace_output_open_name(swayc_t *output); 11swayc_t *workspace_create(const char*);
12// Search for any available workspace name
13const char *workspace_next_name(void);
14
15
16swayc_t *workspace_by_name(const char*); 12swayc_t *workspace_by_name(const char*);
17void workspace_switch(swayc_t*); 13void workspace_switch(swayc_t*);
18swayc_t *workspace_output_next(void); 14swayc_t *workspace_output_next();
19swayc_t *workspace_next(void); 15swayc_t *workspace_next();
20swayc_t *workspace_output_prev(void); 16swayc_t *workspace_output_prev();
21swayc_t *workspace_prev(void); 17swayc_t *workspace_prev();
22 18
23#endif 19#endif