Sync OpenBSD patchset 688:

Add a tiled layout, originally from Liam Bedford a while ago, fixed up
by me.
This commit is contained in:
Tiago Cunha
2010-05-14 14:16:37 +00:00
parent 4e120c00f7
commit 701b5bdf61
4 changed files with 113 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-select-layout.c,v 1.10 2009-12-04 22:14:47 tcunha Exp $ */
/* $Id: cmd-select-layout.c,v 1.11 2010-05-14 14:16:37 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -59,6 +59,9 @@ cmd_select_layout_init(struct cmd *self, int key)
case ('4' | KEYC_ESCAPE):
data->arg = xstrdup("main-vertical");
break;
case ('5' | KEYC_ESCAPE):
data->arg = xstrdup("tiled");
break;
}
}