aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Ronan Pigott <rpigott@berkeley.edu>2020-07-23 02:21:12 -0700
committerLibravatar Simon Ser <contact@emersion.fr>2020-07-27 10:54:04 +0200
commitdae74057b3b81b5c9b7646b9c09b4549f4e35740 (patch)
treebfb353f4b3f05e00c9e79f608f3e7b2e200b23b7 /sway/commands.c
parentview: display scratchpad hidden containers when activated by ftm (diff)
downloadsway-dae74057b3b81b5c9b7646b9c09b4549f4e35740.tar.gz
sway-dae74057b3b81b5c9b7646b9c09b4549f4e35740.tar.zst
sway-dae74057b3b81b5c9b7646b9c09b4549f4e35740.zip
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[] = {
72 { "fullscreen", cmd_fullscreen }, 72 { "fullscreen", cmd_fullscreen },
73 { "gaps", cmd_gaps }, 73 { "gaps", cmd_gaps },
74 { "hide_edge_borders", cmd_hide_edge_borders }, 74 { "hide_edge_borders", cmd_hide_edge_borders },
75 { "include", cmd_include },
76 { "input", cmd_input }, 75 { "input", cmd_input },
77 { "mode", cmd_mode }, 76 { "mode", cmd_mode },
78 { "mouse_warping", cmd_mouse_warping }, 77 { "mouse_warping", cmd_mouse_warping },
@@ -101,6 +100,7 @@ static struct cmd_handler handlers[] = {
101/* Config-time only commands. Keep alphabetized */ 100/* Config-time only commands. Keep alphabetized */
102static struct cmd_handler config_handlers[] = { 101static struct cmd_handler config_handlers[] = {
103 { "default_orientation", cmd_default_orientation }, 102 { "default_orientation", cmd_default_orientation },
103 { "include", cmd_include },
104 { "swaybg_command", cmd_swaybg_command }, 104 { "swaybg_command", cmd_swaybg_command },
105 { "swaynag_command", cmd_swaynag_command }, 105 { "swaynag_command", cmd_swaynag_command },
106 { "workspace_layout", cmd_workspace_layout }, 106 { "workspace_layout", cmd_workspace_layout },