mirror of
https://github.com/swaywm/sway.git
synced 2025-11-18 06:59:48 -05:00
Implement no_focus command
This commit is contained in:
parent
a588b326c2
commit
fc2484095a
5 changed files with 56 additions and 5 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue