aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2017-12-04 22:43:49 +0100
committerLibravatar emersion <contact@emersion.fr>2017-12-04 22:43:49 +0100
commit514c819ff98d72880c5b7e0beb7bd9ca866bc1ad (patch)
treed2ddf512ebc46ea2c93c7a487cdf758c84e3d0bd /sway/commands.c
parentMerge pull request #1494 from acrisci/feature/xwayland (diff)
downloadsway-514c819ff98d72880c5b7e0beb7bd9ca866bc1ad.tar.gz
sway-514c819ff98d72880c5b7e0beb7bd9ca866bc1ad.tar.zst
sway-514c819ff98d72880c5b7e0beb7bd9ca866bc1ad.zip
Add exec and exec_always commands
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 94a45253..5fdcdbb6 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -90,6 +90,8 @@ struct cmd_results *add_color(const char *name, char *buffer, const char *color)
90 90
91/* Keep alphabetized */ 91/* Keep alphabetized */
92static struct cmd_handler handlers[] = { 92static struct cmd_handler handlers[] = {
93 { "exec", cmd_exec },
94 { "exec_always", cmd_exec_always },
93 { "exit", cmd_exit }, 95 { "exit", cmd_exit },
94}; 96};
95 97