diff options
author | Drew DeVault <[email protected]> | 2016-12-02 16:08:45 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2016-12-02 16:08:45 -0500 |
commit | e9e1a6a409a276310e1015763184641547e7823c (patch) | |
tree | e3133eedaa7aa43051c2ce849e2b205d763be83a /sway/config.c | |
parent | 0a1b211e09e9fc82885eaf12c0a3658d36c0bec0 (diff) |
Add IPC policy to config
Also reduces enum abuse, cc @minus7
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index e55c6dea..b1b0aac9 100644 --- a/sway/config.c +++ b/sway/config.c @@ -345,6 +345,7 @@ static void config_defaults(struct sway_config *config) { // Security config->command_policies = create_list(); config->feature_policies = create_list(); + config->ipc_policy = UINT32_MAX; } static int compare_modifiers(const void *left, const void *right) { |