aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorjasper2007-05-27 09:23:12 +0000
committerjasper2007-05-27 09:23:12 +0000
commit5116ffb4630d2bcf16cd2ab429dc6baba29e40bb (patch)
tree5a3842e65757fc760ab59f3e80981a9bee466d88 /conf.c
parent8b8d4e50c0eedfd6d0f8575173c1b3e78749101f (diff)
downloadcwm-5116ffb4630d2bcf16cd2ab429dc6baba29e40bb.tar.gz
full screen sized windows
ok matthieu@
Diffstat (limited to '')
-rw-r--r--conf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index e3a7795..9c53fb9 100644
--- a/conf.c
+++ b/conf.c
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
- * $Id: conf.c,v 1.2 2007/04/27 18:08:14 bernd Exp $
+ * $Id: conf.c,v 1.3 2007/05/27 09:23:12 jasper Exp $
*/
#include "headers.h"
@@ -229,6 +229,8 @@ conf_setup(struct conf *c)
XK_Right, Mod1Mask, 0, 0);
conf_bindkey(c, kbfunc_client_prevgroup,
XK_Left, Mod1Mask, 0, 0);
+ conf_bindkey(c, kbfunc_client_maximize,
+ XK_f, ControlMask|Mod1Mask, KBFLAG_NEEDCLIENT, 0);
conf_bindkey(c, kbfunc_client_vmaximize,
XK_equal, ControlMask|Mod1Mask, KBFLAG_NEEDCLIENT, 0);
}
@@ -410,7 +412,7 @@ conf_parsekeys(struct conf *c, char *filename)
substring = strchr(ent->d_name, '-') + 1;
- // if there is no '-' in name, continue as is
+ /* If there is no '-' in name, continue as is */
if (strchr(ent->d_name, '-') == NULL)
substring = ent->d_name;