diff options
| -rw-r--r-- | config.h | 2 | ||||
| -rw-r--r-- | drw.h | 2 | ||||
| -rw-r--r-- | dwm.c | 3 |
3 files changed, 2 insertions, 5 deletions
@@ -13,7 +13,7 @@ static const int mouse_default = 0; /* 1 means enable mouse by defau static const char col_gray1[] = "#000000"; static const char col_gray2[] = "#bbbbbb"; static const char col_float[] = "#770000"; -static const char col_master[] = "#FF9F1C"; +static const char col_master[] = "#FF8700"; static const char *colors[][5] = { /* fg bg border float master */ [SchemeNorm] = { col_gray2, col_gray1, col_gray1, col_gray1, col_gray1 }, @@ -12,7 +12,7 @@ typedef struct Fnt { struct Fnt *next; } Fnt; -enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */ +enum { ColFg, ColBg, ColBorder, ColFloat, ColMaster }; /* Clr scheme index */ typedef XftColor Clr; typedef struct { @@ -60,8 +60,6 @@ #define WIDTH(X) ((X)->w + 2 * (X)->bw) #define HEIGHT(X) ((X)->h + 2 * (X)->bw) #define TAGMASK ((1 << LENGTH(tags)) - 1) -#define ColFloat 3 -#define ColMaster 4 /* enums */ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ @@ -1669,7 +1667,6 @@ setup(void) /* init appearance */ scheme = ecalloc(LENGTH(colors), sizeof(Clr *)); for (i = 0; i < LENGTH(colors); i++) { - scheme[i] = drw_scm_create(drw, colors[i], 4); scheme[i] = drw_scm_create(drw, colors[i], 5); } |
