Compare commits

..

2 Commits

Author SHA1 Message Date
e45d1e5c40 Add my configs/customizations, point to upstream repo in README.md 2026-01-14 15:45:57 -06:00
Niki Yoshiuchi
3145440b47 Apply target patches from suckless (list below)
- fibonacci
- stacker
- swallow
- xresources
- noborder
2026-01-13 21:28:32 -06:00
4 changed files with 10 additions and 16 deletions

View File

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

View File

@@ -1,11 +1,5 @@
/* 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 */
static unsigned int borderpx = 1; /* border pixel of windows */
static unsigned int snap = 32; /* snap pixel */

View File

@@ -104,15 +104,13 @@ ResourcePref resources[] = {
static const Key keys[] = {
/* modifier key function argument */
{ MODKEY|ShiftMask, XK_f, togglebar, {0} },
{ MODKEY|ShiftMask, XK_b, togglebar, {0} },
STACKKEYS(MODKEY, focus)
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_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, XK_comma, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_period, setlayout, {.v = &layouts[1]} },
@@ -137,11 +135,10 @@ static const Key keys[] = {
TAGKEYS( XK_0, 9)
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY|ShiftMask, XK_q, quit, {0} },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_space, spawn, {.v = dmenucmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, spawn, {.v = (const char*[]){ BROWSER_CMD, NULL } } },
{ 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 */

BIN
dwm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B