Introduction
Introduction Statistics Contact Development Disclaimer Help
tdoing it in a shorter way - dwm - [fork] customized build of dwm, the dynamic …
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 260a55ef625466a5ba6c6c6ef736706df7b5d81b
parent 0e98090d653457488d74103dc44a1e2aba071895
Author: Anselm R. Garbe <[email protected]>
Date: Sat, 3 Nov 2007 21:14:04 +0100
doing it in a shorter way
Diffstat:
M dwm.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
---
diff --git a/dwm.c b/dwm.c
t@@ -1321,10 +1321,8 @@ run(void) {
*p = '\0';
offset = 0;
}
- else if(offset + r < len - 1)
- offset += r;
else
- offset = 0;
+ offset = (offset + r < len - 1) ? offs…
}
drawbar();
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.