aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h4
-rw-r--r--config.h14
-rwxr-xr-xdwmbin73176 -> 73376 bytes
-rw-r--r--dwm.obin63000 -> 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";
diff --git a/config.h b/config.h
index 8e247e7..222c009 100644
--- a/config.h
+++ b/config.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";
@@ -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} },
diff --git a/dwm b/dwm
index 60158eb..a99c6fe 100755
--- a/dwm
+++ b/dwm
Binary files differ
diff --git a/dwm.o b/dwm.o
index c321a8d..1f1c976 100644
--- a/dwm.o
+++ b/dwm.o
Binary files differ