diff options
| author | foswret <foswret@posteo.com> | 2025-08-23 00:18:51 -0500 |
|---|---|---|
| committer | foswret <foswret@posteo.com> | 2025-08-23 00:18:51 -0500 |
| commit | d22a5aa86b377e9d1272c0bb914a1142867e9d5d (patch) | |
| tree | 6efa4df03e89fccf20f60caea57f8c65d0001410 | |
| parent | bcb89888a0af899b69884b4dc05db7ea8267c377 (diff) | |
changed font to GoMono Nerd Font Mono
| -rw-r--r-- | config.def.h | 4 | ||||
| -rw-r--r-- | config.h | 14 | ||||
| -rwxr-xr-x | dwm | bin | 73176 -> 73376 bytes | |||
| -rw-r--r-- | dwm.o | bin | 63000 -> 63520 bytes |
4 files changed, 12 insertions, 6 deletions
diff --git a/config.def.h b/config.def.h index e74c6ce..222c009 100644 --- a/config.def.h +++ b/config.def.h @@ -6,8 +6,8 @@ static const unsigned int gappx = 6; /* gaps between windows */ static unsigned int snap = 32; /* snap pixel */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ -static char font[] = "monospace:size=10"; -static char dmenufont[] = "monospace:size=10"; +static char font[] = "GoMono Nerd Font Mono:size=10"; +static char dmenufont[] = "GoMono Nerd Font Mono:size=10"; static const char *fonts[] = { font }; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; @@ -6,8 +6,8 @@ static const unsigned int gappx = 6; /* gaps between windows */ static unsigned int snap = 32; /* snap pixel */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ -static char font[] = "monospace:size=10"; -static char dmenufont[] = "monospace:size=10"; +static char font[] = "GoMono Nerd Font Mono:size=10"; +static char dmenufont[] = "GoMono Nerd Font Mono:size=10"; static const char *fonts[] = { font }; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; @@ -63,6 +63,9 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbordercolor, "-sf", selfgcolor, NULL }; static const char *termcmd[] = { "st", NULL }; +static const char *browsercmd[] = { "librewolf", NULL }; +static const char *emojicmd[] = { "rofimoji", NULL }; +static const char *lockcmd[] = { "slock", NULL }; /* * Xresources preferences to load at startup @@ -87,13 +90,16 @@ ResourcePref resources[] = { static const Key keys[] = { /* modifier key function argument */ - { MODKEY, XK_p, spawn, {.v = dmenucmd } }, + { MODKEY, XK_d, spawn, {.v = dmenucmd } }, { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, + { MODKEY|ShiftMask, XK_b, spawn, {.v = browsercmd } }, + { MODKEY, XK_e, spawn, {.v = emojicmd } }, + { MODKEY|ShiftMask, XK_l, spawn, {.v = lockcmd } }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, - { MODKEY, XK_d, incnmaster, {.i = -1 } }, + { MODKEY, XK_p, incnmaster, {.i = -1 } }, { MODKEY, XK_h, setmfact, {.f = -0.05} }, { MODKEY, XK_l, setmfact, {.f = +0.05} }, { MODKEY, XK_Return, zoom, {0} }, Binary files differBinary files differ |
