aboutsummaryrefslogtreecommitdiffstats
path: root/include/workspace.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-06-11 15:02:26 -0400
committerLibravatar GitHub <noreply@github.com>2016-06-11 15:02:26 -0400
commit6388e1e288009fc12af3fe418a6faf8cfe9926f7 (patch)
treed1b4fb33848d09c71602005c57919a903ce3d72d /include/workspace.h
parentMany improvements to man pages (diff)
parentcleanup + add timeouts for pid_workspace list (diff)
downloadsway-6388e1e288009fc12af3fe418a6faf8cfe9926f7.tar.gz
sway-6388e1e288009fc12af3fe418a6faf8cfe9926f7.tar.zst
sway-6388e1e288009fc12af3fe418a6faf8cfe9926f7.zip
Merge pull request #701 from zandrmartin/assign-command
messy start of a fix for #462
Diffstat (limited to 'include/workspace.h')
-rw-r--r--include/workspace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/workspace.h b/include/workspace.h
index 6911e3d4..c268fafa 100644
--- a/include/workspace.h
+++ b/include/workspace.h
@@ -2,6 +2,7 @@
2#define _SWAY_WORKSPACE_H 2#define _SWAY_WORKSPACE_H
3 3
4#include <wlc/wlc.h> 4#include <wlc/wlc.h>
5#include <unistd.h>
5#include "list.h" 6#include "list.h"
6#include "layout.h" 7#include "layout.h"
7 8
@@ -16,5 +17,6 @@ swayc_t *workspace_output_next();
16swayc_t *workspace_next(); 17swayc_t *workspace_next();
17swayc_t *workspace_output_prev(); 18swayc_t *workspace_output_prev();
18swayc_t *workspace_prev(); 19swayc_t *workspace_prev();
20swayc_t *workspace_for_pid(pid_t pid);
19 21
20#endif 22#endif