From: arg@10ksloc.org Date: Mon, 7 Aug 2006 07:47:13 +0000 (+0200) Subject: status box should have a border in my eyes X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=45d16d090b05ee988d2c669e43db1b8c67195809 status box should have a border in my eyes --- diff --git a/config.arg.h b/config.arg.h index c60f06a..8483aa4 100644 --- a/config.arg.h +++ b/config.arg.h @@ -47,7 +47,7 @@ static Key key[] = { \ { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \ { MODKEY|ShiftMask, XK_q, quit, { 0 } }, \ { MODKEY|ShiftMask, XK_Return, spawn, \ - { .cmd = "exec urxvt -bg '#ffffea' " \ + { .cmd = "exec urxvt -bg '#ffffea' +sb " \ "-fn '-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*'" } }, \ }; diff --git a/draw.c b/draw.c index dffb490..16f934d 100644 --- a/draw.c +++ b/draw.c @@ -125,7 +125,7 @@ drawstatus() x = dc.x + dc.w; dc.w = textw(stext); dc.x = bx + bw - dc.w; - drawtext(stext, !istile, False); + drawtext(stext, !istile, True); if(sel && ((dc.w = dc.x - x) >= bh)) { dc.x = x; drawtext(sel->name, istile, True);