aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/xwayland.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/sway/commands/xwayland.c b/sway/commands/xwayland.c
new file mode 100644
index 00000000..03a0121b
--- /dev/null
+++ b/sway/commands/xwayland.c
@@ -0,0 +1,21 @@
+#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
+ config->xwayland = parse_boolean(argv[0], config->xwayland);
+#else
+ wlr_log(WLR_INFO, "Ignoring `xwayland` command, "
+ "sway hasn't been built with Xwayland support");
+#endif
+
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}