applied Peter Hartlich's border collapse patch
This commit is contained in:
parent
3f3086f8b8
commit
bedbe59aaa
10
config.def.h
10
config.def.h
@ -3,12 +3,12 @@
|
|||||||
/* appearance */
|
/* appearance */
|
||||||
#define BARPOS BarTop /* BarBot, BarOff */
|
#define BARPOS BarTop /* BarBot, BarOff */
|
||||||
#define BORDERPX 1
|
#define BORDERPX 1
|
||||||
#define FONT "-*-proggyclean-*-*-*-*-*-*-*-*-*-*-*-*"
|
#define FONT "-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*"
|
||||||
#define NORMBORDERCOLOR "#cccccc"
|
#define NORMBORDERCOLOR "#cccccc"
|
||||||
#define NORMBGCOLOR "#dddddd"
|
#define NORMBGCOLOR "#cccccc"
|
||||||
#define NORMFGCOLOR "#333333"
|
#define NORMFGCOLOR "#000000"
|
||||||
#define SELBORDERCOLOR "#0066cc"
|
#define SELBORDERCOLOR "#0066ff"
|
||||||
#define SELBGCOLOR "#0066cc"
|
#define SELBGCOLOR "#0066ff"
|
||||||
#define SELFGCOLOR "#ffffff"
|
#define SELFGCOLOR "#ffffff"
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
|
8
dwm.c
8
dwm.c
@ -646,8 +646,10 @@ enternotify(XEvent *e) {
|
|||||||
|
|
||||||
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
||||||
return;
|
return;
|
||||||
if((c = getclient(ev->window)))
|
if((c = getclient(ev->window))) {
|
||||||
focus(c);
|
focus(c);
|
||||||
|
restack();
|
||||||
|
}
|
||||||
else if(ev->window == root) {
|
else if(ev->window == root) {
|
||||||
selscreen = True;
|
selscreen = True;
|
||||||
focus(NULL);
|
focus(NULL);
|
||||||
@ -1592,7 +1594,7 @@ tile(void) {
|
|||||||
else { /* tile window */
|
else { /* tile window */
|
||||||
if(i == 1) {
|
if(i == 1) {
|
||||||
ny = way;
|
ny = way;
|
||||||
nx += mc->w + 2 * mc->border;
|
nx += mc->w + mc->border;
|
||||||
nw = waw - nx - 2 * c->border;
|
nw = waw - nx - 2 * c->border;
|
||||||
}
|
}
|
||||||
if(i + 1 == n) /* remainder */
|
if(i + 1 == n) /* remainder */
|
||||||
@ -1602,7 +1604,7 @@ tile(void) {
|
|||||||
}
|
}
|
||||||
resize(c, nx, ny, nw, nh, RESIZEHINTS);
|
resize(c, nx, ny, nw, nh, RESIZEHINTS);
|
||||||
if(n > 1 && th != wah)
|
if(n > 1 && th != wah)
|
||||||
ny = c->y + c->h + 2 * c->border;
|
ny = c->y + c->h + c->border;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user