aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/criteria.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-16 22:18:12 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-16 22:18:12 +1000
commitfc2484095a71206fe82f5042c0d127458a8da3bc (patch)
treec1d10d53e34eac84a7083db3591de17c5fdcf16e /include/sway/criteria.h
parentMerge pull request #2282 from RyanDwyer/fix-tab-split-focus (diff)
downloadsway-fc2484095a71206fe82f5042c0d127458a8da3bc.tar.gz
sway-fc2484095a71206fe82f5042c0d127458a8da3bc.tar.zst
sway-fc2484095a71206fe82f5042c0d127458a8da3bc.zip
Implement no_focus command
Diffstat (limited to 'include/sway/criteria.h')
-rw-r--r--include/sway/criteria.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index bd3ca0ac..6a8337c5 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -6,9 +6,10 @@
6#include "tree/view.h" 6#include "tree/view.h"
7 7
8enum criteria_type { 8enum criteria_type {
9 CT_COMMAND = 1 << 0, 9 CT_COMMAND = 1 << 0,
10 CT_ASSIGN_OUTPUT = 1 << 1, 10 CT_ASSIGN_OUTPUT = 1 << 1,
11 CT_ASSIGN_WORKSPACE = 1 << 2, 11 CT_ASSIGN_WORKSPACE = 1 << 2,
12 CT_NO_FOCUS = 1 << 3,
12}; 13};
13 14
14struct criteria { 15struct criteria {