# HG changeset patch # User Anselm R Garbe # Date 1246549497 -3600 # Node ID d4f7bc21588f185e7975cc5f3e3eba4cd9b7c632 # Parent 17c047097617535cefc8b06c49c9546ed75afccf update diff -r 17c047097617 -r d4f7bc21588f config.def.h --- a/config.def.h Thu Jul 02 16:41:52 2009 +0100 +++ b/config.def.h Thu Jul 02 16:44:57 2009 +0100 @@ -14,7 +14,7 @@ static unsigned int snap = 32; /* snap pixel */ /* monitor(s) symbols */ -static const char *monsyms[] = { "I", "II", "III", "IV", "V" }; +static const char *monsyms[] = { "i", "ii", "iii", "iv", "v" }; /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; diff -r 17c047097617 -r d4f7bc21588f dwm.c --- a/dwm.c Thu Jul 02 16:41:52 2009 +0100 +++ b/dwm.c Thu Jul 02 16:44:57 2009 +0100 @@ -636,7 +636,7 @@ dc.x = 0; if(mons->next) { /* more than a single monitor */ dc.w = TEXTW(monsyms[m->screen_number]); - drawtext(monsyms[m->screen_number], selmon == m ? dc.sel : dc.norm, True); + drawtext(monsyms[m->screen_number], selmon == m ? dc.sel : dc.norm, False); dc.x += dc.w; } m->btx = dc.x;