summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2021-09-23 00:23:06 -0500
committerzachir <zachir@librem.one>2021-09-23 00:23:06 -0500
commitf98473dcdf731ca11ceed89924a477c8d4597fc0 (patch)
treef2d01e151042f5e3df253aef78711c190268dfd1
parentea355eebac8db76b454e70df1064c75f885e6cd5 (diff)
parentca50c144d83cab4c77eeccacecb1066afd3e0801 (diff)
merge
-rw-r--r--config.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/config.h b/config.h
index 8613398..fd82e2c 100644
--- a/config.h
+++ b/config.h
@@ -15,15 +15,15 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "mononoki Nerd Font Mono:size=10", "JoyPixels:size=9" };
static const char dmenufont[] = "mononoki Nerd Font Mono:size=10";
-static const char col_gray1[] = "#222222";
-static const char col_gray2[] = "#444444";
+static const char col_gray1[] = "#000000";
+static const char col_gray2[] = "#000000";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#750000";
+static const char col_cyan[] = "#ffffff";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ [SchemeSel] = { col_gray1, col_cyan, col_cyan },
};
typedef struct {
@@ -159,20 +159,20 @@ static Key keys[] = {
{ MODKEY|ControlMask, XK_a, togglescratch, {.ui = 5 } },
{ MODKEY|ControlMask, XK_s, togglescratch, {.ui = 6 } },
{ MODKEY|ControlMask, XK_d, togglescratch, {.ui = 7 } },
- { MODKEY, XK_Escape, spawn, {.v = sxhkdsig } },
- // { 0, XF86XK_AudioPlay, spawn, {.v = mpdtoggle } },
- // { 0, XF86XK_AudioNext, spawn, {.v = mpdnext } },
- // { 0, XF86XK_AudioPrev, spawn, {.v = mpdprev } },
- // { ShiftMask, XF86XK_AudioPlay, spawn, {.v = plytoggle } },
- // { ShiftMask, XF86XK_AudioNext, spawn, {.v = plyfwd } },
- // { ShiftMask, XF86XK_AudioPrev, spawn, {.v = plybck } },
- // { 0, XF86XK_MonBrightnessUp, spawn, {.v = blightup } },
- // { 0, XF86XK_MonBrightnessDown, spawn, {.v = blightdown } },
- // { 0, XF86XK_AudioLowerVolume, spawn, {.v = audiodown } },
- // { 0, XF86XK_AudioRaiseVolume, spawn, {.v = audioup } },
- // { 0, XF86XK_AudioMute, spawn, {.v = audiomute } },
- // { 0, XF86XK_AudioMicMute, spawn, {.v = micmute } },
- // { Mod4Mask, XK_l, spawn, {.v = lockscr } },
+ { MODKEY, XK_Escape, spawn, {.v = sxhkdsig } },
+ // { 0, XF86XK_AudioPlay, spawn, {.v = mpdtoggle } },
+ // { 0, XF86XK_AudioNext, spawn, {.v = mpdnext } },
+ // { 0, XF86XK_AudioPrev, spawn, {.v = mpdprev } },
+ // { ShiftMask, XF86XK_AudioPlay, spawn, {.v = plytoggle } },
+ // { ShiftMask, XF86XK_AudioNext, spawn, {.v = plyfwd } },
+ // { ShiftMask, XF86XK_AudioPrev, spawn, {.v = plybck } },
+ // { 0, XF86XK_MonBrightnessUp, spawn, {.v = blightup } },
+ // { 0, XF86XK_MonBrightnessDown, spawn, {.v = blightdown } },
+ // { 0, XF86XK_AudioLowerVolume, spawn, {.v = audiodown } },
+ // { 0, XF86XK_AudioRaiseVolume, spawn, {.v = audioup } },
+ // { 0, XF86XK_AudioMute, spawn, {.v = audiomute } },
+ // { 0, XF86XK_AudioMicMute, spawn, {.v = micmute } },
+ // { Mod4Mask, XK_l, spawn, {.v = lockscr } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },