commit eb56698d099f64c5bbe248bbb61d578f5eabc009
parent 7d14eabc576f0c0fe89dcb08ef0f3c4758a7e100
Author: Ed van Bruggen <ed@edryd.org>
Date: Sun, 1 Oct 2017 22:42:05 -0700
sl: Update dwm.h to lastest version
Diffstat:
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/sl/dwm.h b/sl/dwm.h
@@ -6,14 +6,11 @@ static const char *fonts[] = {
"FontAwesome:pixelsize=14"
};
static const char dmenufont[] = "monospace:size=10";
-static const char normbordercolor[] = "#002b36";
-static const char normbgcolor[] = "#073642";
-static const char normfgcolor[] = "#93A1A1";
-static const char selbordercolor[] = "#268bd2";
-static const char selbgcolor[] = "#268bd2";
-static const char selfgcolor[] = "#eee8d5";
-static const char normmarkcolor[] = "#859900"; /*border color for marked client*/
-static const char selmarkcolor[] = "#2aa198"; /*border color for marked client on focus*/
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { "#93A1A1", "#073642", "#002b36" },
+ [SchemeSel] = { "#eee8d5", "#268bd2", "#268bd2" },
+};
static const char urgbordercolor[] = "#dc322f";
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int gappx = 6; /* gap pixel between windows */