aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sway/commands.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 51de7a50..2ecfeb98 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -281,6 +281,11 @@ static bool cmd_focus_follows_mouse(struct sway_config *config, int argc, char *
return true;
}
+static bool cmd_move(struct sway_config *config, int argc, char **argv) {
+ sway_log(L_DEBUG, "move cmd stub called");//Stubbed method until I get back.
+ return true;
+}
+
static bool cmd_kill(struct sway_config *config, int argc, char **argv) {
swayc_t *view = get_focused_container(&root_container);
wlc_view_close(view->handle);