Compare commits

..

6 Commits

Author SHA1 Message Date
e77a1963d6 Add my configs/customizations, point to upstream repo in README.md 2026-01-29 20:42:23 -06:00
redacted
f31f24c7ae [APPLY PATCH] added noborder patch 2026-01-14 15:58:17 -06:00
Jack Bird
76e4761e00 [APPLY PATCH] xresources updated for 138b405 2026-01-14 15:58:06 -06:00
thjbbvlt
477d33baa0 [APPLY PATCH] stacker updated for version 6.6 2026-01-14 15:57:54 -06:00
Tom Schwindl
574b69eb37 [APPLY PATCH] 6.3 swallow patch 2026-01-14 15:57:38 -06:00
Niki Yoshiuchi
8888121330 [APPLY PATCH] Adding the fibonacci layout patch 2026-01-14 15:57:03 -06:00
4 changed files with 16 additions and 10 deletions

View File

@@ -13,9 +13,6 @@ all: dwm
${OBJ}: config.h config.mk ${OBJ}: config.h config.mk
config.h:
cp config.def.h $@
dwm: ${OBJ} dwm: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS} ${CC} -o $@ ${OBJ} ${LDFLAGS}
@@ -24,8 +21,8 @@ clean:
dist: clean dist: clean
mkdir -p dwm-${VERSION} mkdir -p dwm-${VERSION}
cp -R LICENSE Makefile README config.def.h config.mk\ cp -R LICENSE Makefile README config.mk\
dwm.1 drw.h util.h ${SRC} dwm.png transient.c dwm-${VERSION} dwm.1 drw.h util.h ${SRC} transient.c dwm-${VERSION}
tar -cf dwm-${VERSION}.tar dwm-${VERSION} tar -cf dwm-${VERSION}.tar dwm-${VERSION}
gzip dwm-${VERSION}.tar gzip dwm-${VERSION}.tar
rm -rf dwm-${VERSION} rm -rf dwm-${VERSION}

View File

@@ -1,5 +1,11 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
/* NOTE: config.h replaces this file, but I'm keeping this one to help distinguish
* between others' patches (published via suckless.org) and my own additions.
* - to see others' patches, diff config.def.h against upstream's config.def.h
* - to see my additional changes, diff config.h against config.def.h
*/
/* appearance */ /* appearance */
static unsigned int borderpx = 1; /* border pixel of windows */ static unsigned int borderpx = 1; /* border pixel of windows */
static unsigned int snap = 32; /* snap pixel */ static unsigned int snap = 32; /* snap pixel */

View File

@@ -104,13 +104,15 @@ ResourcePref resources[] = {
static const Key keys[] = { static const Key keys[] = {
/* modifier key function argument */ /* modifier key function argument */
{ MODKEY|ShiftMask, XK_b, togglebar, {0} }, { MODKEY|ShiftMask, XK_f, togglebar, {0} },
STACKKEYS(MODKEY, focus) STACKKEYS(MODKEY, focus)
STACKKEYS(MODKEY|ShiftMask, push) STACKKEYS(MODKEY|ShiftMask, push)
/* { MODKEY, XK_h, zxcv, {.f = -0.05} }, */
/* { MODKEY, XK_l, zxcv, {.f = +0.05} }, */
{ MODKEY|ShiftMask, XK_h, setmfact, {.f = -0.05} }, // zxcv
{ MODKEY|ShiftMask, XK_l, setmfact, {.f = +0.05} }, // zxcv
{ MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } },
{ MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_d, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
{ MODKEY|ShiftMask, XK_Return, zoom, {0} }, /* swap current and master clients */ { MODKEY|ShiftMask, XK_Return, zoom, {0} }, /* swap current and master clients */
{ MODKEY, XK_comma, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_comma, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_period, setlayout, {.v = &layouts[1]} }, { MODKEY, XK_period, setlayout, {.v = &layouts[1]} },
@@ -135,10 +137,11 @@ static const Key keys[] = {
TAGKEYS( XK_0, 9) TAGKEYS( XK_0, 9)
{ MODKEY, XK_q, killclient, {0} }, { MODKEY, XK_q, killclient, {0} },
{ MODKEY|ShiftMask, XK_q, quit, {0} }, { MODKEY|ShiftMask, XK_q, quit, {0} },
{ MODKEY, XK_space, spawn, {.v = dmenucmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, spawn, {.v = (const char*[]){ BROWSER_CMD, NULL } } }, { MODKEY, XK_space, spawn, {.v = dmenucmd } },
{ MODKEY, XK_s, spawn, SHCMD(TERMINAL_CMD " -e " SYSTEM_MONITOR) }, { MODKEY, XK_s, spawn, SHCMD(TERMINAL_CMD " -e " SYSTEM_MONITOR) },
{ MODKEY|ShiftMask, XK_b, spawn, {.v = (const char*[]){ BROWSER_CMD, NULL } } },
{ MODKEY, XK_b, spawn, SHCMD(TERMINAL_CMD " -e bookmark-find") },
}; };
/* button definitions */ /* button definitions */

BIN
dwm.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 373 B