aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorRonan Pigott <rpigott@berkeley.edu>2020-07-23 02:21:12 -0700
committerSimon Ser <contact@emersion.fr>2020-07-27 10:54:04 +0200
commitdae74057b3b81b5c9b7646b9c09b4549f4e35740 (patch)
treebfb353f4b3f05e00c9e79f608f3e7b2e200b23b7 /sway/commands.c
parent3520fd2c192f087dc6f3525b0d7d15c2790103b8 (diff)
commands: disallow runtime include
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index f20a8baa..fe1e98b5 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -72,7 +72,6 @@ static struct cmd_handler handlers[] = {
{ "fullscreen", cmd_fullscreen },
{ "gaps", cmd_gaps },
{ "hide_edge_borders", cmd_hide_edge_borders },
- { "include", cmd_include },
{ "input", cmd_input },
{ "mode", cmd_mode },
{ "mouse_warping", cmd_mouse_warping },
@@ -101,6 +100,7 @@ static struct cmd_handler handlers[] = {
/* Config-time only commands. Keep alphabetized */
static struct cmd_handler config_handlers[] = {
{ "default_orientation", cmd_default_orientation },
+ { "include", cmd_include },
{ "swaybg_command", cmd_swaybg_command },
{ "swaynag_command", cmd_swaynag_command },
{ "workspace_layout", cmd_workspace_layout },