]> git.armaanb.net Git - dwm.git/blobdiff - config.h
Switch to a light theme
[dwm.git] / config.h
index 493ab8d7d840d72b256d65074cb20993e54510ae..292d9558a0c62a1a873d4be1e59a7022760262f0 100644 (file)
--- a/config.h
+++ b/config.h
@@ -6,15 +6,13 @@ static const unsigned int snap      = 32;       /* snap pixel */
 static const int showbar            = 1;        /* 0 means no bar */
 static const int topbar             = 1;        /* 0 means bottom bar */
 static const char *fonts[]          = { "JetBrainsMono Medium NF:pixelsize=14:antialias=true:autohint=true" };
-static const char col_gray1[]       = "#222222";
-static const char col_gray2[]       = "#444444";
-static const char col_gray3[]       = "#bbbbbb";
-static const char col_gray4[]       = "#eeeeee";
-static const char col_cyan[]        = "#005577";
+static const char white[]       = "#ffffff";
+static const char black[]       = "#000000";
+static const char mgray[]       = "#bbbbbb";
 static const char *colors[][3]      = {
-       /*               fg         bg         border   */
-       [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
-       [SchemeSel]  = { col_gray4, col_cyan,  col_cyan  },
+       /*               fg     bg     border   */
+       [SchemeNorm] = { black, white, mgray },
+       [SchemeSel]  = { white, black, black },
 };
 
 /* tagging */
@@ -142,3 +140,13 @@ static Button buttons[] = {
        { ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
 };
 
+static const char *const autostart[] = {
+       "hsetroot", "-solid", "#bbbbbb", NULL,
+       "dwmblocks", NULL,
+       "xmodmap", "/home/armaa/.config/xmodmap", NULL,
+       "xcape", NULL,
+       "redshift", "-l", "42.4:-71.3", "-t", "6500:2500", NULL,
+       "emacs", "--daemon", NULL,
+       "syncthing", NULL,
+       NULL /* terminate */
+};