aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2009-07-02 16:41:52 +0100
committerAnselm R Garbe <garbeam@gmail.com>2009-07-02 16:41:52 +0100
commit7ac8c1d4e16d85fdb21d10fab798c878718cee21 (patch)
treed9ae06f361599faac424751da02da62c1c258045
parent16e1ef5d400a501780fc676de01ed4ea7638e7a9 (diff)
introduced monitor symbols
-rw-r--r--config.def.h3
-rw-r--r--dwm.c7
2 files changed, 5 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h
index e3bb832..8596110 100644
--- a/config.def.h
+++ b/config.def.h
@@ -13,6 +13,9 @@ static const char selfgcolor[] = "#ffffff";
static unsigned int borderpx = 1; /* border pixel of windows */
static unsigned int snap = 32; /* snap pixel */
+/* monitor(s) symbols */
+static const char *monsyms[] = { "I", "II", "III", "IV", "V" };
+
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
diff --git a/dwm.c b/dwm.c
index 32b7fc8..5c714db 100644
--- a/dwm.c
+++ b/dwm.c
@@ -635,11 +635,8 @@ drawbar(Monitor *m) {
dc.x = 0;
if(mons->next) { /* more than a single monitor */
- char buf[2];
- buf[0] = m->screen_number + '0';
- buf[1] = '\0';
- dc.w = TEXTW(buf);
- drawtext(buf, selmon == m ? dc.sel : dc.norm, True);
+ dc.w = TEXTW(monsyms[m->screen_number]);
+ drawtext(monsyms[m->screen_number], selmon == m ? dc.sel : dc.norm, True);
dc.x += dc.w;
}
m->btx = dc.x;