diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-01-14 22:37:34 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-01-14 22:37:34 +0100 |
commit | 0045ad87dfb32f35fc17b5b8942049cfe84d623c (patch) | |
tree | a3a5a06a85ab9072f8ae0544cdd14f9bdf13af6e /dwm.h | |
parent | ceea528eff5ccd1bbd11696209fdc60a5383cc41 (diff) | |
download | dwm-0045ad87dfb32f35fc17b5b8942049cfe84d623c.tar.gz |
implemented new color scheme accordingly to Sanders proposal
Diffstat (limited to 'dwm.h')
-rw-r--r-- | dwm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dwm.h b/dwm.h index 1a95078..3789373 100644 --- a/dwm.h +++ b/dwm.h @@ -43,7 +43,7 @@ enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */ enum { WMProtocols, WMDelete, WMLast }; /* default atoms */ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ -enum { ColFG, ColBG, ColLast }; /* color */ +enum { ColBorder, ColFG, ColBG, ColLast }; /* color */ typedef enum { TopLeft, TopRight, BotLeft, BotRight @@ -66,7 +66,6 @@ typedef struct { int x, y, w, h; unsigned long norm[ColLast]; unsigned long sel[ColLast]; - unsigned long status[ColLast]; Drawable drawable; Fnt font; GC gc; |