replace restartsig with selfrestart
ci/woodpecker/tag/woodpecker Pipeline was successful Details

This commit is contained in:
Luca Bilke 2024-02-07 16:45:03 +01:00
parent 7d68e43091
commit be92cad4d2
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
2 changed files with 3 additions and 3 deletions

View File

@ -377,7 +377,7 @@ static const Key keys[] = {
// { MODKEY | ShiftMask, XK_page_up, spawn, {.v = (const char *[]){NULL}} },
// { MODKEY, XK_delete, spawn, {.v = (const char *[]){NULL}} },
// { MODKEY | ShiftMask, XK_delete, spawn, {.v = (const char *[]){NULL}} },
// { MODKEY, XK_End, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_End, self_restart, {0} },
{ MODKEY | ShiftMask, XK_End, quit, {0} },
// { MODKEY, XK_page_down, spawn, {.v = (const char *[]){NULL}} },
// { MODKEY | ShiftMask, XK_page_down, spawn, {.v = (const char *[]){NULL}} },

View File

@ -966,7 +966,7 @@
* Additionally dwm can quit cleanly by using kill -TERM dwmpid.
* https://dwm.suckless.org/patches/restartsig/
*/
#define RESTARTSIG_PATCH 1
#define RESTARTSIG_PATCH 0
/* Adds rio-like drawing to resize the selected client.
* This depends on an external tool slop being installed.
@ -1038,7 +1038,7 @@
/* Allows restarting dwm without the dependency of an external script.
* https://dwm.suckless.org/patches/selfrestart/
*/
#define SELFRESTART_PATCH 0
#define SELFRESTART_PATCH 1
/* Floating windows being sent to another monitor will be centered.
* https://dwm.suckless.org/patches/sendmoncenter/