new diff
This commit is contained in:
parent
dbd2d37b47
commit
130b967615
1 changed files with 7 additions and 14 deletions
|
@ -11,7 +11,7 @@ dwm-alwayscenter-20200625-f04cac6.diff
|
||||||
---
|
---
|
||||||
diff '--color=auto' -Nu a/config.def.h b/config.def.h
|
diff '--color=auto' -Nu a/config.def.h b/config.def.h
|
||||||
--- a/config.def.h 2024-03-19 05:24:52.000000000 -0600
|
--- a/config.def.h 2024-03-19 05:24:52.000000000 -0600
|
||||||
+++ b/config.def.h 2024-04-27 11:37:41.015365002 -0600
|
+++ b/config.def.h 2024-04-28 21:58:33.535704620 -0600
|
||||||
@@ -2,7 +2,9 @@
|
@@ -2,7 +2,9 @@
|
||||||
|
|
||||||
/* appearance */
|
/* appearance */
|
||||||
|
@ -74,7 +74,7 @@ diff '--color=auto' -Nu a/config.def.h b/config.def.h
|
||||||
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
||||||
diff '--color=auto' -Nu a/config.h b/config.h
|
diff '--color=auto' -Nu a/config.h b/config.h
|
||||||
--- a/config.h 1969-12-31 18:00:00.000000000 -0600
|
--- a/config.h 1969-12-31 18:00:00.000000000 -0600
|
||||||
+++ b/config.h 2024-04-27 12:11:35.738704463 -0600
|
+++ b/config.h 2024-04-28 22:01:48.845590861 -0600
|
||||||
@@ -0,0 +1,172 @@
|
@@ -0,0 +1,172 @@
|
||||||
+/* See LICENSE file for copyright and license details. */
|
+/* See LICENSE file for copyright and license details. */
|
||||||
+#include <X11/XF86keysym.h>
|
+#include <X11/XF86keysym.h>
|
||||||
|
@ -182,8 +182,8 @@ diff '--color=auto' -Nu a/config.h b/config.h
|
||||||
+ { MODKEY|ShiftMask, XK_b, togglebar, {0} },
|
+ { MODKEY|ShiftMask, XK_b, togglebar, {0} },
|
||||||
+ { MODKEY, XK_j, focusstack, {.i = +1 } },
|
+ { MODKEY, XK_j, focusstack, {.i = +1 } },
|
||||||
+ { MODKEY, XK_k, focusstack, {.i = -1 } },
|
+ { MODKEY, XK_k, focusstack, {.i = -1 } },
|
||||||
+ { MODKEY, XK_i, incnmaster, {.i = +1 } },
|
+ { MODKEY|ShiftMask, XK_i, incnmaster, {.i = +1 } },
|
||||||
+ { MODKEY, XK_d, incnmaster, {.i = -1 } },
|
+ { MODKEY|ShiftMask, XK_d, incnmaster, {.i = -1 } },
|
||||||
+ { MODKEY, XK_h, setmfact, {.f = -0.05} },
|
+ { MODKEY, XK_h, setmfact, {.f = -0.05} },
|
||||||
+ { MODKEY, XK_l, setmfact, {.f = +0.05} },
|
+ { MODKEY, XK_l, setmfact, {.f = +0.05} },
|
||||||
+ { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
|
+ { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
|
||||||
|
@ -250,7 +250,7 @@ diff '--color=auto' -Nu a/config.h b/config.h
|
||||||
+
|
+
|
||||||
diff '--color=auto' -Nu a/config.mk b/config.mk
|
diff '--color=auto' -Nu a/config.mk b/config.mk
|
||||||
--- a/config.mk 2024-03-19 05:24:52.000000000 -0600
|
--- a/config.mk 2024-03-19 05:24:52.000000000 -0600
|
||||||
+++ b/config.mk 2024-04-27 11:33:16.209911147 -0600
|
+++ b/config.mk 2024-04-28 21:58:33.535704620 -0600
|
||||||
@@ -20,10 +20,11 @@
|
@@ -20,10 +20,11 @@
|
||||||
# OpenBSD (uncomment)
|
# OpenBSD (uncomment)
|
||||||
#FREETYPEINC = ${X11INC}/freetype2
|
#FREETYPEINC = ${X11INC}/freetype2
|
||||||
|
@ -266,7 +266,7 @@ diff '--color=auto' -Nu a/config.mk b/config.mk
|
||||||
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
||||||
diff '--color=auto' -Nu a/dwm.c b/dwm.c
|
diff '--color=auto' -Nu a/dwm.c b/dwm.c
|
||||||
--- a/dwm.c 2024-03-19 05:24:52.000000000 -0600
|
--- a/dwm.c 2024-03-19 05:24:52.000000000 -0600
|
||||||
+++ b/dwm.c 2024-04-27 11:41:25.915303029 -0600
|
+++ b/dwm.c 2024-04-28 21:58:33.535704620 -0600
|
||||||
@@ -40,6 +40,12 @@
|
@@ -40,6 +40,12 @@
|
||||||
#include <X11/extensions/Xinerama.h>
|
#include <X11/extensions/Xinerama.h>
|
||||||
#endif /* XINERAMA */
|
#endif /* XINERAMA */
|
||||||
|
@ -1099,16 +1099,9 @@ diff '--color=auto' -Nu a/dwm.c b/dwm.c
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
Common subdirectories: a/.git and b/.git
|
|
||||||
diff '--color=auto' -Nu a/.gitignore b/.gitignore
|
|
||||||
--- a/.gitignore 1969-12-31 18:00:00.000000000 -0600
|
|
||||||
+++ b/.gitignore 2024-04-27 11:45:02.843884093 -0600
|
|
||||||
@@ -0,0 +1,2 @@
|
|
||||||
+dwm
|
|
||||||
+*.o
|
|
||||||
diff '--color=auto' -Nu a/movestack.c b/movestack.c
|
diff '--color=auto' -Nu a/movestack.c b/movestack.c
|
||||||
--- a/movestack.c 1969-12-31 18:00:00.000000000 -0600
|
--- a/movestack.c 1969-12-31 18:00:00.000000000 -0600
|
||||||
+++ b/movestack.c 2024-04-27 11:35:14.407101874 -0600
|
+++ b/movestack.c 2024-04-28 21:58:33.535704620 -0600
|
||||||
@@ -0,0 +1,48 @@
|
@@ -0,0 +1,48 @@
|
||||||
+void
|
+void
|
||||||
+movestack(const Arg *arg) {
|
+movestack(const Arg *arg) {
|
||||||
|
|
Loading…
Reference in a new issue