diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-16 16:46:16 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-16 16:46:16 -0400 |
commit | 7f4529ec8b6362ef36ce546cfe34d816f1b708f0 (patch) | |
tree | 45de60347ce0fc86e4ac1ee9e814152aee9929c6 /include | |
parent | c5d98fe6febc705487f4a8871f5abeb3aa36890b (diff) | |
parent | 0a0fe18fd6126941b3518652c935da1d81249a19 (diff) |
Merge pull request #44 from Luminarys/master
Added in workspace next/prev and workspace output_next/prev
Diffstat (limited to 'include')
-rw-r--r-- | include/workspace.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/workspace.h b/include/workspace.h index 59a6d526..8ce39bbd 100644 --- a/include/workspace.h +++ b/include/workspace.h @@ -11,6 +11,10 @@ char *workspace_next_name(void); swayc_t *workspace_create(const char*); swayc_t *workspace_find_by_name(const char*); void workspace_switch(swayc_t*); +void workspace_output_next(); +void workspace_next(); +void workspace_output_prev(); +void workspace_prev(); void layout_log(const swayc_t *c, int depth); #endif |