]> git.armaanb.net Git - dwm.git/blobdiff - config.h
Switch to a light theme
[dwm.git] / config.h
index f386a011d2036b3d89798393dd2d76bf33975349..292d9558a0c62a1a873d4be1e59a7022760262f0 100644 (file)
--- a/config.h
+++ b/config.h
@@ -1,20 +1,18 @@
 /* See LICENSE file for copyright and license details. */
 
 /* appearance */
-static const unsigned int borderpx  = 1;        /* border pixel of windows */
+static const unsigned int borderpx  = 2;        /* border pixel of windows */
 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 */
@@ -106,7 +104,9 @@ static Key keys[] = {
        { MODKEY|ControlMask, XK_e,      spawn, EMACS("(elfeed)") },
        { MODKEY|ControlMask, XK_r,      spawn, EMACS("(acheam-calendar)") },
        { MODKEY|ControlMask, XK_t,      spawn, EMACS("(progn (calc) (windmove-up) (delete-window))") },
-       { MODKEY|ControlMask, XK_o,      spawn, SHCMD("bookmarks") },
+       { MODKEY|ControlMask, XK_u,      spawn, SHCMD("dweb uri") },
+       { MODKEY|ControlMask, XK_i,      spawn, SHCMD("dweb search") },
+       { MODKEY|ControlMask, XK_o,      spawn, SHCMD("dweb bookmark") },
        { MODKEY|ControlMask, XK_p,      spawn, SHCMD("chorizo") },
        /***************************************************************/
        { 0,           XF86XK_AudioLowerVolume,  spawn, SHCMD("amixer sset Master 5%-; pkill -RTMIN+10 dwmblocks") },
@@ -140,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 */
+};