From 237670da9793ba9da98aade8621fa349fc6b3527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Desgualdo=20Pereira?= Date: Sun, 19 Oct 2025 08:48:42 -0300 Subject: [PATCH] fix white spaces at the end of some lines --- patches/gridall/gridall.diff | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/patches/gridall/gridall.diff b/patches/gridall/gridall.diff index 8678706..d8587bd 100644 --- a/patches/gridall/gridall.diff +++ b/patches/gridall/gridall.diff @@ -39,9 +39,9 @@ diff -up ../dwl_winview_gaplessgrid/dwl.c ./dwl.c + /* hide the statusbar when activating the gridall + const char *dwlb_hide_cmd[] = { "dwlb", "-hide", "eDP-1", NULL }; + if (fork() == 0) { -+ setsid(); ++ setsid(); + execvp(dwlb_hide_cmd[0], (char *const *)dwlb_hide_cmd); -+ perror("execvp"); ++ perror("execvp"); + _exit(1); + } */ + setlayout(&(const Arg){.v = &layouts[3]}); @@ -52,9 +52,9 @@ diff -up ../dwl_winview_gaplessgrid/dwl.c ./dwl.c + setlayout(&(const Arg){.v = &layouts[0]}); + /* show the statusbar again after choosing the client window to focus + if (fork() == 0) { -+ setsid(); ++ setsid(); + execvp(dwlb_show_cmd[0], (char *const *)dwlb_show_cmd); -+ perror("execvp"); ++ perror("execvp"); + _exit(1); + } */ + }