removed maximize, there will be monocle soon
authoranselm@anselm1
Sat, 22 Dec 2007 12:52:14 +0000
changeset 1076 591632523d96
parent 1075 e3916ef44cf0
child 1077 51b8e0c21bcb
removed maximize, there will be monocle soon
config.def.h
dwm.c
--- a/config.def.h	Sat Dec 22 12:49:04 2007 +0000
+++ b/config.def.h	Sat Dec 22 12:52:14 2007 +0000
@@ -45,7 +45,6 @@
 	{ MODKEY,			XK_k,		focusprev,	NULL },
 	{ MODKEY,			XK_h,		setmwfact,	"-0.05" },
 	{ MODKEY,			XK_l,		setmwfact,	"+0.05" },
-	{ MODKEY,			XK_m,		maximize,	NULL },
 	{ MODKEY,			XK_r,		reapply,	NULL },
 	{ MODKEY,			XK_Return,	zoom,		NULL },
 	{ MODKEY,			XK_Tab,		viewprevtag,	NULL },
--- a/dwm.c	Sat Dec 22 12:49:04 2007 +0000
+++ b/dwm.c	Sat Dec 22 12:52:14 2007 +0000
@@ -174,7 +174,6 @@
 void manage(Window w, XWindowAttributes *wa);
 void mappingnotify(XEvent *e);
 void maprequest(XEvent *e);
-void maximize(const char *arg);
 void movemouse(Client *c);
 Client *nexttiled(Client *c, Monitor *m);
 void propertynotify(XEvent *e);
@@ -1135,15 +1134,6 @@
 }
 
 void
-maximize(const char *arg) {
-/*
-	if(!sel || (!sel->isfloating && layout->arrange != floating))
-		return;
-	resize(sel, wax, way, waw - 2 * sel->border, wah - 2 * sel->border, True);
-*/
-}
-
-void
 movemouse(Client *c) {
 	int x1, y1, ocx, ocy, di, nx, ny;
 	unsigned int dui;