summaryrefslogtreecommitdiffstats
path: root/sway/commands/output/enable.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-06-03 18:48:00 +0100
committerLibravatar GitHub <noreply@github.com>2018-06-03 18:48:00 +0100
commit0549fd027bee17d2ee904ccf7e6447a8f79d9f7f (patch)
tree53cfa1cbe37683c8ccdec3933ea8dad6cb290f48 /sway/commands/output/enable.c
parentMerge pull request #2099 from RyanDwyer/fix-seat-get-active-child (diff)
parentAddress review comments for output subcommands (diff)
downloadsway-0549fd027bee17d2ee904ccf7e6447a8f79d9f7f.tar.gz
sway-0549fd027bee17d2ee904ccf7e6447a8f79d9f7f.tar.zst
sway-0549fd027bee17d2ee904ccf7e6447a8f79d9f7f.zip
Merge pull request #2087 from RedSoxFan/output-subcommand
Refactor cmd_output to use config_subcommand
Diffstat (limited to 'sway/commands/output/enable.c')
-rw-r--r--sway/commands/output/enable.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/sway/commands/output/enable.c b/sway/commands/output/enable.c
new file mode 100644
index 00000000..8e3314f8
--- /dev/null
+++ b/sway/commands/output/enable.c
@@ -0,0 +1,14 @@
1#include "sway/commands.h"
2#include "sway/config.h"
3
4struct cmd_results *output_cmd_enable(int argc, char **argv) {
5 if (!config->handler_context.output_config) {
6 return cmd_results_new(CMD_FAILURE, "output", "Missing output config");
7 }
8 config->handler_context.output_config->enabled = 1;
9
10 config->handler_context.leftovers.argc = argc;
11 config->handler_context.leftovers.argv = argv;
12 return NULL;
13}
14