update to dwm 6.4
This commit is contained in:
parent
b157e079ac
commit
beedef851d
@ -1,6 +1,6 @@
|
||||
COMMENT= dynamic window manager
|
||||
|
||||
V= 6.3
|
||||
V= 6.4
|
||||
DISTNAME= dwm-${V}
|
||||
|
||||
CATEGORIES= x11
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (dwm-6.3.tar.gz) = utqgKFKbH7of1/moTztk8xGQRmyFgBG1Pi97cMajB40=
|
||||
SIZE (dwm-6.3.tar.gz) = 25351
|
||||
SHA256 (dwm-6.4.tar.gz) = +pwNaaWESFB2z8GICf1wXlwggNr7E9XnKaNkbKdwOm4=
|
||||
SIZE (dwm-6.4.tar.gz) = 25321
|
||||
|
@ -37,12 +37,22 @@ Index: config.def.h
|
||||
};
|
||||
|
||||
/* layout(s) */
|
||||
@@ -58,7 +61,7 @@ static const Layout layouts[] = {
|
||||
@@ -57,7 +60,7 @@ static const Layout layouts[] = {
|
||||
|
||||
/* commands */
|
||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||
-static const char *termcmd[] = { "st", NULL };
|
||||
+static const char *termcmd[] = { "xterm", NULL };
|
||||
|
||||
static Key keys[] = {
|
||||
static const Key keys[] = {
|
||||
/* modifier key function argument */
|
||||
@@ -65,7 +68,9 @@ static const Key keys[] = {
|
||||
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
|
||||
{ MODKEY, XK_b, togglebar, {0} },
|
||||
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|
||||
+ { MODKEY, XK_Down, focusstack, {.i = +1 } },
|
||||
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
||||
+ { MODKEY, XK_Up, focusstack, {.i = -1 } },
|
||||
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
|
||||
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
|
||||
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
||||
|
@ -1,16 +1,18 @@
|
||||
Index: config.mk
|
||||
--- config.mk.orig
|
||||
+++ config.mk
|
||||
@@ -18,7 +18,7 @@ XINERAMAFLAGS = -DXINERAMA
|
||||
@@ -18,8 +18,8 @@ XINERAMAFLAGS = -DXINERAMA
|
||||
FREETYPELIBS = -lfontconfig -lXft
|
||||
FREETYPEINC = /usr/include/freetype2
|
||||
# OpenBSD (uncomment)
|
||||
-#FREETYPEINC = ${X11INC}/freetype2
|
||||
-#MANPREFIX = ${PREFIX}/man
|
||||
+FREETYPEINC = ${X11INC}/freetype2
|
||||
+MANPREFIX = ${PREFIX}/man
|
||||
|
||||
# includes and libs
|
||||
INCS = -I${X11INC} -I${FREETYPEINC}
|
||||
@@ -27,8 +27,8 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIB
|
||||
@@ -28,8 +28,8 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIB
|
||||
# flags
|
||||
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
||||
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
|
||||
|
Loading…
x
Reference in New Issue
Block a user