mirror of
https://github.com/swaywm/sway.git
synced 2026-03-13 05:34:04 -04:00
37 lines
1 KiB
C
37 lines
1 KiB
C
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/output.h"
|
|
#include "util.h"
|
|
|
|
struct cmd_results *output_cmd_hdr(int argc, char **argv) {
|
|
if (!config->handler_context.output_config) {
|
|
return cmd_results_new(CMD_FAILURE, "Missing output config");
|
|
}
|
|
if (argc == 0) {
|
|
return cmd_results_new(CMD_INVALID, "Missing hdr argument");
|
|
}
|
|
|
|
bool current = false;
|
|
if (strcasecmp(argv[0], "toggle") == 0) {
|
|
const char *oc_name = config->handler_context.output_config->name;
|
|
if (strcmp(oc_name, "*") == 0) {
|
|
return cmd_results_new(CMD_INVALID,
|
|
"Cannot apply toggle to all outputs");
|
|
}
|
|
|
|
struct sway_output *output = all_output_by_name_or_id(oc_name);
|
|
if (!output) {
|
|
return cmd_results_new(CMD_FAILURE,
|
|
"Cannot apply toggle to unknown output %s", oc_name);
|
|
}
|
|
|
|
current = output->hdr;
|
|
}
|
|
|
|
config->handler_context.output_config->hdr = parse_boolean(argv[0], current);
|
|
|
|
config->handler_context.leftovers.argc = argc - 1;
|
|
config->handler_context.leftovers.argv = argv + 1;
|
|
return NULL;
|
|
}
|