bugfix, improve build script
Build/Publish XBPS / build-and-publish (push) Successful in 10s Details

This commit is contained in:
Luca Bilke 2024-04-17 22:06:58 +02:00
parent bd4efb8973
commit 016cdc27e7
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
2 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ cp config.mk patches.h dwm-flexipatch/
flexipatch-finalizer/flexipatch-finalizer.sh -r -d dwm-flexipatch -o dwm-final
git -C dwm-flexipatch reset --hard HEAD && git -C dwm-flexipatch clean -fd
for patch in patches/*.diff; do
patch -d dwm-final <"$patch"
patch -d dwm-final <"$patch"
done
cp config.h dwm-final/
cd dwm-final || exit 1
make
make "$@"

View File

@ -309,7 +309,7 @@ static const Key keys[] = {
// { MODKEY | ShiftMask, XK_q, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_j, focusdir, {.i = 3} },
// { MODKEY | ShiftMask, XK_j, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_k, focusstack, {.i = 2} },
{ MODKEY, XK_k, focusdir, {.i = 2} },
// { MODKEY | ShiftMask, XK_k, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_x, togglefloating, {0} },
{ MODKEY | ShiftMask, XK_x, unfloatvisible, {0} },