aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ipc.h2
-rw-r--r--include/sway/config.h9
-rw-r--r--sway/config.c1
-rw-r--r--sway/ipc-server.c2
4 files changed, 8 insertions, 6 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 496625ce..98390335 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -1,6 +1,8 @@
#ifndef _SWAY_IPC_H
#define _SWAY_IPC_H
+#define event_mask(ev) (1 << (ev & 0x7F))
+
enum ipc_command_type {
IPC_COMMAND = 0,
IPC_GET_WORKSPACES = 1,
diff --git a/include/sway/config.h b/include/sway/config.h
index 14a86e49..1154b871 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -135,7 +135,7 @@ struct bar_config {
int height; // -1 not defined
int tray_padding;
bool workspace_buttons;
- bool wrap_scroll;
+ bool wrap_scroll;
char *separator_symbol;
bool strip_workspace_numbers;
bool binding_mode_indicator;
@@ -191,7 +191,7 @@ enum command_context {
struct command_policy {
char *command;
- enum command_context context;
+ uint32_t context;
};
enum secure_feature {
@@ -206,7 +206,7 @@ enum secure_feature {
struct feature_policy {
char *program;
- enum secure_feature features;
+ uint32_t features;
};
/**
@@ -228,7 +228,7 @@ struct sway_config {
uint32_t floating_mod;
uint32_t dragging_key;
uint32_t resizing_key;
- char *floating_scroll_up_cmd;
+ char *floating_scroll_up_cmd;
char *floating_scroll_down_cmd;
char *floating_scroll_left_cmd;
char *floating_scroll_right_cmd;
@@ -281,6 +281,7 @@ struct sway_config {
// Security
list_t *command_policies;
list_t *feature_policies;
+ uint32_t ipc_policy;
};
void pid_workspace_add(struct pid_workspace *pw);
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) {
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 0442a2f9..ef741e3b 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -55,8 +55,6 @@ bool ipc_send_reply(struct ipc_client *client, const char *payload, uint32_t pay
void ipc_get_workspaces_callback(swayc_t *workspace, void *data);
void ipc_get_outputs_callback(swayc_t *container, void *data);
-#define event_mask(ev) (1 << (ev & 0x7F))
-
void ipc_init(void) {
ipc_socket = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, 0);
if (ipc_socket == -1) {