mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
45 lines
2.1 KiB
Diff
45 lines
2.1 KiB
Diff
diff --git a/config.def.h b/config.def.h
|
|
index ece0707..b4c3cdd 100644
|
|
--- a/config.def.h
|
|
+++ b/config.def.h
|
|
@@ -16,14 +16,14 @@ static const int barwidth = 250;
|
|
static const int focusonwheel = 0;
|
|
static const int vertpad = 10; /* vertical padding of bar */
|
|
static const int sidepad = 10; /* horizontal padding of bar */
|
|
-static const char *fonts[] = { "monospace:size=10" };
|
|
-static const char dmenufont[] = "monospace:size=10";
|
|
-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 unsigned int baralpha = 0xd0;
|
|
+static const char *fonts[] = { "monospace:size=15" };
|
|
+static const char dmenufont[] = "monospace:size=12";
|
|
+static const char col_gray1[] = "#000000";
|
|
+static const char col_gray2[] = "#80a0ff";
|
|
+static const char col_gray3[] = "#7c8f8f";
|
|
+static const char col_gray4[] = "#a1aab8";
|
|
+static const char col_cyan[] = "#79dac8";
|
|
+static const unsigned int baralpha = OPAQUE;
|
|
static const unsigned int borderalpha = OPAQUE;
|
|
static const char *colors[][3] = {
|
|
/* fg bg border */
|
|
@@ -66,7 +66,7 @@ static const Layout layouts[] = {
|
|
};
|
|
|
|
/* key definitions */
|
|
-#define MODKEY Mod1Mask
|
|
+#define MODKEY Mod4Mask
|
|
#define TAGKEYS(KEY,TAG) \
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
@@ -77,7 +77,7 @@ static const Layout layouts[] = {
|
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
|
|
|
/* commands */
|
|
-static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
|
+static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray1, NULL };
|
|
static const char *termcmd[] = { "st", NULL };
|
|
|
|
#include "movestack.c"
|