Introduction
Introduction Statistics Contact Development Disclaimer Help
tafter switching to OpenBSD again, I switched back to a saner color scheme - dw…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 1b9fe55025f84a8430b4be5822784551746eee8d
parent 2272df9d3179ec639066614f4d36d18df16ff725
Author: [email protected] <unknown>
Date: Mon, 21 Aug 2006 17:41:09 +0200
after switching to OpenBSD again, I switched back to a saner color scheme
Diffstat:
M client.c | 12 +++++++-----
M config.arg.h | 6 +++---
2 files changed, 10 insertions(+), 8 deletions(-)
---
diff --git a/client.c b/client.c
t@@ -73,12 +73,14 @@ focus(Client *c)
{
Client *old = sel;
- if (!issel)
+ if(!issel)
return;
- if(sel && sel->ismax && sel != c)
- togglemax(NULL);
- sel = c;
- if(old && old != c) {
+ if(!sel)
+ sel = c;
+ else if(sel != c) {
+ if(sel->ismax)
+ togglemax(NULL);
+ sel = c;
grabbutton(old, AnyButton, 0);
drawtitle(old);
}
diff --git a/config.arg.h b/config.arg.h
t@@ -9,9 +9,9 @@ const char *tags[] = { "work", "net", "fnord", NULL };
#define DEFMODE dotile /* dofloat */
#define DEFTAG 0 /* index */
#define FONT "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso…
-#define BGCOLOR "#0d121d"
+#define BGCOLOR "#666699"
#define FGCOLOR "#eeeeee"
-#define BORDERCOLOR "#3f484d"
+#define BORDERCOLOR "#9999CC"
#define MODKEY Mod1Mask
#define MASTERW 60 /* percent */
t@@ -19,7 +19,7 @@ const char *tags[] = { "work", "net", "fnord", NULL };
static Key key[] = { \
/* modifier key function …
{ MODKEY|ShiftMask, XK_Return, spawn, \
- { .cmd = "exec urxvt +sb -tr -bg black -fg '#eeeeee' -fn '"FON…
+ { .cmd = "exec uxterm -bg '#dddddd' -fg '#000000' -cr '#000000…
{ MODKEY, XK_p, spawn, \
{ .cmd = "exec `ls -lL /usr/bin /usr/local/bin 2>/dev/null | "…
"awk 'NF>2 && $1 ~ /^[^d].*x/ {print $NF}' | sort -u |…
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.