diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2025-10-27 20:24:42 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2025-10-27 20:24:42 -0600 |
| commit | 909a1b7fefee5aea073f42a0e637738918bf07ae (patch) | |
| tree | 0e236b22abf12aa64f08ab15657430d02c1db387 /config.h | |
| parent | f570a251a00b286ac0aa11b8d4a1008edd172bd9 (diff) | |
Added modern (caskaydia) font and nerd-font-symbols
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -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} }, }; + |
