diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-16 08:31:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 08:31:00 -0700 |
commit | 6a9ca6efa057999df3ce047887bd009700c3dc1b (patch) | |
tree | c380b85e10b4008218c43238e06abce8a296b8df /include/sway | |
parent | a588b326c24c65a691596bc9eb72ce9080d9de91 (diff) | |
parent | e2f28c023c8c5e9e847e2e9495a009b645bc60fc (diff) |
Merge pull request #2283 from RyanDwyer/no-focus
Implement no_focus command
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/criteria.h | 5 |
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 @@ #include "tree/view.h" enum criteria_type { - CT_COMMAND = 1 << 0, - CT_ASSIGN_OUTPUT = 1 << 1, + CT_COMMAND = 1 << 0, + CT_ASSIGN_OUTPUT = 1 << 1, CT_ASSIGN_WORKSPACE = 1 << 2, + CT_NO_FOCUS = 1 << 3, }; struct criteria { |