aboutsummaryrefslogtreecommitdiff
path: root/include/sway/criteria.h
diff options
context:
space:
mode:
authorRyan Dwyer <RyanDwyer@users.noreply.github.com>2018-08-19 16:16:32 +1000
committerGitHub <noreply@github.com>2018-08-19 16:16:32 +1000
commit389d159c81502aa8b951895de11c3720bbd5ba7d (patch)
treec5d96041e3270b1d1d50f8a42d91652d615c9938 /include/sway/criteria.h
parentd0a24465d75cc7197ee253e1de9fa961071cd034 (diff)
parent7f22fab3895ff090d5e26936f4e964e081090164 (diff)
Merge pull request #2453 from ianyfan/commands
More commands
Diffstat (limited to 'include/sway/criteria.h')
-rw-r--r--include/sway/criteria.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index b4ff7d49..7a1e547b 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -7,10 +7,11 @@
#include "tree/view.h"
enum criteria_type {
- CT_COMMAND = 1 << 0,
- CT_ASSIGN_OUTPUT = 1 << 1,
- CT_ASSIGN_WORKSPACE = 1 << 2,
- CT_NO_FOCUS = 1 << 3,
+ CT_COMMAND = 1 << 0,
+ CT_ASSIGN_OUTPUT = 1 << 1,
+ CT_ASSIGN_WORKSPACE = 1 << 2,
+ CT_ASSIGN_WORKSPACE_NUMBER = 1 << 3,
+ CT_NO_FOCUS = 1 << 4,
};
struct criteria {