From f350fb79a86cc98ac39dcb9eae408517e8f4c7ad Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Thu, 26 May 2022 18:34:21 -0500 Subject: update --- config.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config.h') diff --git a/config.h b/config.h index 4e77fbb..9a16f25 100644 --- a/config.h +++ b/config.h @@ -60,8 +60,9 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; -static const char *termcmd[] = { "st", NULL }; +static const char *dmenupmcmd[] = { "sh", "/home/ozpv/.config/dwm/powermenu.sh", NULL }; static const char *dmenunmcmd[] = { "networkmanager_dmenu", NULL }; +static const char *termcmd[] = { "st", NULL }; static const char *browsercmd[] = { "firefox", NULL }; static const char *volup[] = { "pactl", "set-sink-volume", "0", "+10%", NULL }; static const char *voldown[] = { "pactl", "set-sink-volume", "0", "-10%", NULL }; @@ -103,6 +104,7 @@ static Key keys[] = { TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) + { MODKEY, XK_q, spawn, {.v = dmenupmcmd } }, { MODKEY|ShiftMask, XK_q, quit, {0} }, }; -- cgit v1.2.3