mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Add ipc connection feature policy controls
This commit is contained in:
parent
62dad7148f
commit
d353da248b
6 changed files with 34 additions and 10 deletions
|
|
@ -7,7 +7,7 @@
|
|||
struct feature_policy *alloc_feature_policy(const char *program) {
|
||||
struct feature_policy *policy = malloc(sizeof(struct feature_policy));
|
||||
policy->program = strdup(program);
|
||||
policy->features = FEATURE_FULLSCREEN | FEATURE_KEYBOARD | FEATURE_MOUSE;
|
||||
policy->features = FEATURE_FULLSCREEN | FEATURE_KEYBOARD | FEATURE_MOUSE | FEATURE_IPC;
|
||||
return policy;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue