dwm

My patch set and modifications to dwm
git clone git://git.ethandl.dev/dwm
Log | Files | Refs | README | LICENSE

commit bdba032602e5d939de5040c9bd178aa368ca554d
parent a9c35d3835b29646cc598e5addd642a89b55c633
Author: Ethan Long <ethandavidlong@gmail.com>
Date:   Wed, 15 Jan 2025 15:33:19 +1100

Added a command for executing a YouTube player

Just make the script yt

Diffstat:
Mconfig.h.OBSD | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/config.h.OBSD b/config.h.OBSD @@ -84,11 +84,13 @@ 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", col_base, "-nf", col_lavender, "-sb", col_lavender, "-sf", col_base, NULL }; static const char *termcmd[] = { "st", NULL }; +static const char *ytcmd[] = { "yt", NULL }; static const Key keys[] = { /* modifier key function argument */ { MODKEY, XK_d, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, + { MODKEY, XK_y, spawn, {.v = ytcmd } }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } },