summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Will Hunt <half-shot@molrams.com>2015-08-18 12:50:15 +0100
committerLibravatar Will Hunt <half-shot@molrams.com>2015-08-18 12:50:15 +0100
commit9ef866bfea19dd0e52b7608a11c0e0d34df7f5e4 (patch)
tree3949ac66edfa80160dad68c63870dccdf8b3fefb
parentCoding style enforcement (diff)
downloadsway-9ef866bfea19dd0e52b7608a11c0e0d34df7f5e4.tar.gz
sway-9ef866bfea19dd0e52b7608a11c0e0d34df7f5e4.tar.zst
sway-9ef866bfea19dd0e52b7608a11c0e0d34df7f5e4.zip
Beguin work on the move command.
Stubbed method.
-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 *
281 return true; 281 return true;
282} 282}
283 283
284static bool cmd_move(struct sway_config *config, int argc, char **argv) {
285 sway_log(L_DEBUG, "move cmd stub called");//Stubbed method until I get back.
286 return true;
287}
288
284static bool cmd_kill(struct sway_config *config, int argc, char **argv) { 289static bool cmd_kill(struct sway_config *config, int argc, char **argv) {
285 swayc_t *view = get_focused_container(&root_container); 290 swayc_t *view = get_focused_container(&root_container);
286 wlc_view_close(view->handle); 291 wlc_view_close(view->handle);