swayfx/sway/commands/seat/fallback.c

28 lines
773 B
C
Raw Normal View History

2017-12-18 02:39:22 +11:00
#include <string.h>
#include <strings.h>
#include "sway/config.h"
#include "sway/commands.h"
#include "sway/input/input-manager.h"
2018-11-10 23:55:06 +11:00
#include "util.h"
2017-12-18 02:39:22 +11:00
struct cmd_results *seat_cmd_fallback(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "fallback", EXPECTED_AT_LEAST, 1))) {
return error;
}
2018-01-21 03:44:34 +11:00
struct seat_config *current_seat_config =
config->handler_context.seat_config;
2017-12-18 02:39:22 +11:00
if (!current_seat_config) {
return cmd_results_new(CMD_FAILURE, "fallback", "No seat defined");
}
struct seat_config *new_config =
new_seat_config(current_seat_config->name);
2018-11-10 23:55:06 +11:00
new_config->fallback = parse_boolean(argv[0], false);
2017-12-18 02:39:22 +11:00
if (!config->validating) {
apply_seat_config(new_config);
}
2017-12-18 02:39:22 +11:00
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}