aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/commands.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-14 11:11:56 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-14 11:11:56 -0500
commit92fef27eaa0b52c9d37bdabff14ae21cd6660f46 (patch)
tree7a923bbbc233079006597d82721117bae88b6ac6 /include/sway/commands.h
parentseat configuration (diff)
downloadsway-92fef27eaa0b52c9d37bdabff14ae21cd6660f46.tar.gz
sway-92fef27eaa0b52c9d37bdabff14ae21cd6660f46.tar.zst
sway-92fef27eaa0b52c9d37bdabff14ae21cd6660f46.zip
basic configuration
Diffstat (limited to 'include/sway/commands.h')
-rw-r--r--include/sway/commands.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 75340e03..ce74e1ed 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -17,6 +17,7 @@ enum cmd_status {
17 CMD_BLOCK_BAR, 17 CMD_BLOCK_BAR,
18 CMD_BLOCK_BAR_COLORS, 18 CMD_BLOCK_BAR_COLORS,
19 CMD_BLOCK_INPUT, 19 CMD_BLOCK_INPUT,
20 CMD_BLOCK_SEAT,
20 CMD_BLOCK_COMMANDS, 21 CMD_BLOCK_COMMANDS,
21 CMD_BLOCK_IPC, 22 CMD_BLOCK_IPC,
22 CMD_BLOCK_IPC_EVENTS, 23 CMD_BLOCK_IPC_EVENTS,
@@ -42,6 +43,7 @@ enum expected_args {
42}; 43};
43 44
44void input_cmd_apply(struct input_config *input); 45void input_cmd_apply(struct input_config *input);
46void seat_cmd_apply(struct seat_config *seat);
45 47
46struct cmd_results *checkarg(int argc, const char *name, 48struct cmd_results *checkarg(int argc, const char *name,
47 enum expected_args type, int val); 49 enum expected_args type, int val);
@@ -111,6 +113,7 @@ sway_cmd cmd_gaps;
111sway_cmd cmd_hide_edge_borders; 113sway_cmd cmd_hide_edge_borders;
112sway_cmd cmd_include; 114sway_cmd cmd_include;
113sway_cmd cmd_input; 115sway_cmd cmd_input;
116sway_cmd cmd_seat;
114sway_cmd cmd_ipc; 117sway_cmd cmd_ipc;
115sway_cmd cmd_kill; 118sway_cmd cmd_kill;
116sway_cmd cmd_layout; 119sway_cmd cmd_layout;
@@ -193,6 +196,8 @@ sway_cmd input_cmd_pointer_accel;
193sway_cmd input_cmd_scroll_method; 196sway_cmd input_cmd_scroll_method;
194sway_cmd input_cmd_tap; 197sway_cmd input_cmd_tap;
195 198
199sway_cmd seat_cmd_attach;
200
196sway_cmd cmd_ipc_cmd; 201sway_cmd cmd_ipc_cmd;
197sway_cmd cmd_ipc_events; 202sway_cmd cmd_ipc_events;
198sway_cmd cmd_ipc_event_cmd; 203sway_cmd cmd_ipc_event_cmd;