소스 검색

status box should have a border in my eyes

arg@10ksloc.org 19 년 전
부모
커밋
45d16d090b
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      config.arg.h
  2. 1 1
      draw.c

+ 1 - 1
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-*'" } }, \
 };
 

+ 1 - 1
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);