swayfx/sway/commands/xwayland.c

27 lines
710 B
C
Raw Normal View History

2018-11-17 22:29:59 +11:00
#include "sway/config.h"
#include "log.h"
#include "sway/commands.h"
#include "sway/server.h"
#include "util.h"
struct cmd_results *cmd_xwayland(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "xwayland", EXPECTED_EQUAL_TO, 1))) {
return error;
}
#ifdef HAVE_XWAYLAND
bool xwayland = parse_boolean(argv[0], true);
if (config->reloading && config->xwayland != xwayland) {
return cmd_results_new(CMD_FAILURE,
"xwayland can only be enabled/disabled at launch");
}
config->xwayland = xwayland;
2018-11-17 22:29:59 +11:00
#else
sway_log(SWAY_INFO, "Ignoring `xwayland` command, "
2018-11-17 22:29:59 +11:00
"sway hasn't been built with Xwayland support");
#endif
return cmd_results_new(CMD_SUCCESS, NULL);
2018-11-17 22:29:59 +11:00
}