migrated dmenu to use 4 instead of 3 colors
This commit is contained in:
parent
349a556556
commit
7bd6f6c05c
@ -4,6 +4,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define FONT "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
|
#define FONT "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
|
||||||
#define BGCOLOR "#666699"
|
#define NORMBGCOLOR "#666699"
|
||||||
#define FGCOLOR "#eeeeee"
|
#define NORMFGCOLOR "#eeeeee"
|
||||||
#define BORDERCOLOR "#9999CC"
|
#define SELBGCOLOR "#eeeeee"
|
||||||
|
#define SELFGCOLOR "#666699"
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define FONT "fixed"
|
#define FONT "fixed"
|
||||||
#define BGCOLOR "#666699"
|
#define NORMBGCOLOR "#666699"
|
||||||
#define FGCOLOR "#eeeeee"
|
#define NORMFGCOLOR "#eeeeee"
|
||||||
#define BORDERCOLOR "#9999CC"
|
#define SELBGCOLOR "#eeeeee"
|
||||||
|
#define SELBFCOLOR "#666699"
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# dmenu version
|
# dmenu version
|
||||||
VERSION = 0.5
|
VERSION = 0.6
|
||||||
|
|
||||||
# Customize below to fit your system
|
# Customize below to fit your system
|
||||||
|
|
||||||
|
|||||||
@ -22,9 +22,8 @@ struct Fnt {
|
|||||||
|
|
||||||
struct DC { /* draw context */
|
struct DC { /* draw context */
|
||||||
int x, y, w, h;
|
int x, y, w, h;
|
||||||
unsigned long bg;
|
unsigned long bg[2];
|
||||||
unsigned long fg;
|
unsigned long fg[2];
|
||||||
unsigned long border;
|
|
||||||
Drawable drawable;
|
Drawable drawable;
|
||||||
Fnt font;
|
Fnt font;
|
||||||
GC gc;
|
GC gc;
|
||||||