diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index 41dc3bc..3c51cfd 100644 --- a/config.def.h +++ b/config.def.h @@ -13,11 +13,11 @@ static const int barpadding = 10; static const int leftpadding = 7; static const char *fonts[] = { "SauceCodePro Nerd Font:size=10" }; static const char dmenufont[] = "SauceCodePro Nerd Font: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_green[] = "#547f62"; +static const char col_gray1[] = "#282828"; +static const char col_gray2[] = "#a89984"; +static const char col_gray3[] = "#ebdbb2"; +static const char col_gray4[] = "#ebdbb2"; +static const char col_green[] = "#689d6a"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, @@ -70,6 +70,7 @@ static const char *browsercmd[] = { "librewolf", NULL }; static const char *passcmd[] = { "passmenu", "--type", NULL }; static const char *mailcmd[] = { "st", "neomutt", NULL }; static const char *musiccmd[] = { "st", "cmus", NULL }; +static const char *youtubecmd[] = { "st", "ytfzf", "-t", "-s", NULL }; static const char *lockcmd[] = { "slock", NULL }; static const char *sessioncmd[] = { "powerdialog", NULL }; @@ -82,6 +83,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_e, spawn, {.v = mailcmd } }, { MODKEY|ShiftMask, XK_m, spawn, {.v = musiccmd } }, { MODKEY|ShiftMask, XK_l, spawn, {.v = lockcmd } }, + { MODKEY|ShiftMask, XK_y, spawn, {.v = youtubecmd } }, { MODKEY, XK_q, spawn, {.v = sessioncmd } }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, |