sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 9ef866bfea19dd0e52b7608a11c0e0d34df7f5e4
parent 2139001c9f61a84ed1ac581a54bb2bde68928afd
Author: Will Hunt <half-shot@molrams.com>
Date:   Tue, 18 Aug 2015 12:50:15 +0100

Beguin work on the move command.

Stubbed method.
Diffstat:
Msway/commands.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git 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);