summaryrefslogtreecommitdiffstats
path: root/sway/commands/output/dpms.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/dpms.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/dpms.c')
-rw-r--r--sway/commands/output/dpms.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/sway/commands/output/dpms.c b/sway/commands/output/dpms.c
new file mode 100644
index 00000000..0959ea6b
--- /dev/null
+++ b/sway/commands/output/dpms.c
@@ -0,0 +1,24 @@
1#include "sway/commands.h"
2#include "sway/config.h"
3
4struct cmd_results *output_cmd_dpms(int argc, char **argv) {
5 if (!config->handler_context.output_config) {
6 return cmd_results_new(CMD_FAILURE, "output", "Missing output config");
7 }
8 if (!argc) {
9 return cmd_results_new(CMD_INVALID, "output", "Missing dpms argument.");
10 }
11
12 if (strcmp(*argv, "on") == 0) {
13 config->handler_context.output_config->dpms_state = DPMS_ON;
14 } else if (strcmp(*argv, "off") == 0) {
15 config->handler_context.output_config->dpms_state = DPMS_OFF;
16 } else {
17 return cmd_results_new(CMD_INVALID, "output",
18 "Invalid dpms state, valid states are on/off.");
19 }
20
21 config->handler_context.leftovers.argc = argc - 1;
22 config->handler_context.leftovers.argv = argv + 1;
23 return NULL;
24}