diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2015-11-29 11:57:19 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2015-11-29 11:57:48 -0300 |
commit | d5e55aab6499a89e9dfaf5b976938bfe3e2f6aee (patch) | |
tree | 52efc28076c31fdd2522ed8b7871a7dd99ad0c87 /src/socket | |
parent | e1ec354306742a5804a20e2651cf49945cd17287 (diff) | |
download | dotwm-d5e55aab6499a89e9dfaf5b976938bfe3e2f6aee.tar.gz |
Begin ef EWMH support and sticky movement
The implementationn of the EWMH and ICCCM support is incomplete. I need to
check how to implement on the right way.
Diffstat (limited to 'src/socket')
-rw-r--r-- | src/socket/parser.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/socket/parser.rs b/src/socket/parser.rs index 0de0248..491c315 100644 --- a/src/socket/parser.rs +++ b/src/socket/parser.rs @@ -109,8 +109,11 @@ fn func<'a>(s: &'a str) -> Result<ExecFn, &'static str> { "exec" => Ok(exec), "move-win" => Ok(move_win), "move-win-to" => Ok(move_win_to), + "move-win-sticky" => Ok(move_win_sticky), "resize-win" => Ok(resize_win), "focus-next" => Ok(focus_next), + "close-win" => Ok(close_win), + "fullscreen" => Ok(fullscreen), "quit" => Ok(quit_dotwm), _ => Err("unknown function"), } |