diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-01-08 15:16:06 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-01-08 15:16:06 +0000 |
commit | 2c1fea411b0d94d18f7bdff1f7529ae922f06050 (patch) | |
tree | a3d1665118d2dfdeb646b3bdbcbbe4d83e835082 /app/cwm/kbfunc.c | |
parent | 56d275c60815ab6091abd64e4efb2f3c785b2e6b (diff) |
add per-group vert/horiz tiling support; introduces 2 new bind commands,
'vtile' and 'htile'; from Alexander Polakov.
Diffstat (limited to 'app/cwm/kbfunc.c')
-rw-r--r-- | app/cwm/kbfunc.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/app/cwm/kbfunc.c b/app/cwm/kbfunc.c index 926229c30..73676a14c 100644 --- a/app/cwm/kbfunc.c +++ b/app/cwm/kbfunc.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: kbfunc.c,v 1.75 2013/01/04 16:30:03 okan Exp $ + * $OpenBSD: kbfunc.c,v 1.76 2013/01/08 15:16:05 okan Exp $ */ #include <sys/param.h> @@ -479,3 +479,16 @@ kbfunc_restart(struct client_ctx *cc, union arg *arg) (void)setsid(); (void)execvp(cwm_argv[0], cwm_argv); } + +void +kbfunc_tile(struct client_ctx *cc, union arg *arg) +{ + switch (arg->i) { + case CWM_TILE_HORIZ: + client_htile(cc); + break; + case CWM_TILE_VERT: + client_vtile(cc); + break; + } +} |