From 909a1b7fefee5aea073f42a0e637738918bf07ae Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Mon, 27 Oct 2025 20:24:42 -0600 Subject: Added modern (caskaydia) font and nerd-font-symbols --- config.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index 43f7754..7589830 100644 --- a/config.h +++ b/config.h @@ -3,7 +3,7 @@ /* Constants */ #define TERMINAL "st" #define TERMCLASS "St" -#define BROWSER "librewolf" +#define BROWSER "firefox" /* appearance */ static unsigned int borderpx = 3; /* border pixel of windows */ @@ -16,12 +16,15 @@ static int swallowfloating = 0; /* 1 means swallow floating windows by static int smartgaps = 0; /* 1 means no outer gap when there is only one window */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ -static char *fonts[] = { "monospace:size=10", "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" }; +/* static char *fonts[] = { "monospace:size=10", "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" }; */ +/*static char *fonts[] = { "CaskaydiaCove Nerd Font Mono:style=SemiLight:size=10", "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" };*/ +static char *fonts[] = { "CaskaydiaCove Nerd Font Mono:style=SemiLight:size=10", "Symbols Nerd Font:pixelsize=10:antialias=true:autohint=true"/*, "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true"*/ }; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; static char normfgcolor[] = "#bbbbbb"; static char selfgcolor[] = "#eeeeee"; -static char selbordercolor[] = "#770000"; +/* static char selbordercolor[] = "#770000";*/ +static char selbordercolor[] = "#ae8c8c"; static char selbgcolor[] = "#005577"; static char *colors[][3] = { /* fg bg border */ @@ -181,6 +184,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_o, incnmaster, {.i = -1 } }, { MODKEY, XK_p, spawn, {.v = (const char*[]){ "mpc", "toggle", NULL } } }, { MODKEY|ShiftMask, XK_p, spawn, SHCMD("mpc pause; pauseallmpv") }, + { MODKEY, XK_bracketleft, spawn, {.v = (const char*[]){ "mpc", "seek", "-10", NULL } } }, { MODKEY|ShiftMask, XK_bracketleft, spawn, {.v = (const char*[]){ "mpc", "seek", "-60", NULL } } }, { MODKEY, XK_bracketright, spawn, {.v = (const char*[]){ "mpc", "seek", "+10", NULL } } }, @@ -214,7 +218,7 @@ static const Key keys[] = { { MODKEY, XK_x, incrgaps, {.i = -3 } }, /* { MODKEY|ShiftMask, XK_x, spawn, SHCMD("") }, */ { MODKEY, XK_c, spawn, {.v = (const char*[]){ TERMINAL, "-e", "profanity", NULL } } }, - /* { MODKEY|ShiftMask, XK_c, spawn, SHCMD("") }, */ + { MODKEY, XK_p, spawn, SHCMD("st -e calcurse") }, /* V is automatically bound above in STACKKEYS */ { MODKEY, XK_b, togglebar, {0} }, /* { MODKEY|ShiftMask, XK_b, spawn, SHCMD("") }, */ @@ -334,3 +338,4 @@ static const Button buttons[] = { { ClkTagBar, 0, Button5, shiftview, {.i = 1} }, { ClkRootWin, 0, Button2, togglebar, {0} }, }; + -- cgit v1.2.3