From 565050ac51687bbd4f388c6aeb2298db94430efb Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Thu, 9 Jul 2009 11:29:01 +0100 Subject: removed monsyms, useless --- config.def.h | 3 --- dwm.c | 15 +++------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/config.def.h b/config.def.h index 4dfc11b..f0e44a7 100644 --- a/config.def.h +++ b/config.def.h @@ -13,9 +13,6 @@ static const unsigned int snap = 32; /* snap pixel */ static const Bool showbar = True; /* False means no bar */ static const Bool topbar = True; /* False means bottom bar */ -/* monitor(s) symbols */ -static const char *monsyms[] = { "<1>", "<2>", "<3>", "<4>" }; - /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; diff --git a/dwm.c b/dwm.c index fa5fdea..07d0d36 100644 --- a/dwm.c +++ b/dwm.c @@ -123,7 +123,7 @@ typedef struct { struct Monitor { int screen_number; float mfact; - int by, btx; /* bar geometry */ + int by; /* bar geometry */ int mx, my, mw, mh; /* screen size */ int wx, wy, ww, wh; /* window area */ unsigned int seltags; @@ -409,9 +409,8 @@ buttonpress(XEvent *e) { selmon = m; focus(NULL); } - if(ev->window == selmon->barwin && ev->x >= selmon->btx) { - i = 0; - x = selmon->btx; + if(ev->window == selmon->barwin) { + i = x = 0; do x += TEXTW(tags[i]); while(ev->x >= x && ++i < LENGTH(tags)); @@ -652,12 +651,6 @@ drawbar(Monitor *m) { urg |= c->tags; } 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, False); - dc.x += dc.w; - } - m->btx = dc.x; for(i = 0; i < LENGTH(tags); i++) { dc.w = TEXTW(tags[i]); col = m->tagset[m->seltags] & 1 << i ? dc.sel : dc.norm; @@ -1690,8 +1683,6 @@ updategeom(void) { if(XineramaIsActive(dpy)) info = XineramaQueryScreens(dpy, &n); #endif /* XINERAMA */ - if(n > LENGTH(monsyms)) - n = LENGTH(monsyms); /* allocate monitor(s) for the new geometry setup */ for(i = 0; i < n; i++) { if(!(m = (Monitor *)malloc(sizeof(Monitor)))) -- cgit 1.4.1-2-gfad0 63abff8966b4825eb03c5248ff0ab9cb'>root/setup.py
blob: 84325cd94c0de7980016f4b565d105a369383cfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50