Introduction
Introduction Statistics Contact Development Disclaimer Help
ColBorder has been moved to the enum with ColFg and ColBg. - dwm - my customize…
git clone git://git.codemadness.org/dwm
Log
Files
Refs
README
LICENSE
---
commit 3cb34830eb25ebda15a23d8391fd69cddb4fc024
parent db2236001c1cb042a2f24052849da96578273b1c
Author: Christopher Drelich <[email protected]>
Date: Wed, 14 Mar 2018 17:44:53 +0100
ColBorder has been moved to the enum with ColFg and ColBg.
Diffstat:
M drw.h | 2 +-
M dwm.c | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/drw.h b/drw.h
@@ -12,7 +12,7 @@ typedef struct Fnt {
struct Fnt *next;
} Fnt;
-enum { ColFg, ColBg }; /* Clr scheme index */
+enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
typedef XftColor Clr;
typedef struct {
diff --git a/dwm.c b/dwm.c
@@ -56,7 +56,6 @@
#define HEIGHT(X) ((X)->h + 2 * (X)->bw)
#define TAGMASK ((1 << LENGTH(tags)) - 1)
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
-#define ColBorder 2
/* enums */
enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
You are viewing proxied material from codemadness.org. 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.