Compare commits
2 Commits
52ce9fabdd
...
44ca479974
Author | SHA1 | Date | |
---|---|---|---|
44ca479974 | |||
ddb0be9a54 |
12
config.def.h
12
config.def.h
@ -61,13 +61,13 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn()
|
|||||||
static const char *dmenucmd[] = { "/bin/dmenu_run", "-m", dmenumon, NULL };
|
static const char *dmenucmd[] = { "/bin/dmenu_run", "-m", dmenumon, NULL };
|
||||||
static const char *pmenucmd[] = { "/bin/passmenu", NULL };
|
static const char *pmenucmd[] = { "/bin/passmenu", NULL };
|
||||||
static const char *termcmd[] = { "/bin/xterm", NULL };
|
static const char *termcmd[] = { "/bin/xterm", NULL };
|
||||||
static const char *lockcmd[] = { "/bin/slock", NULL };
|
static const char *lockcmd[] = { "/bin/xlock", NULL };
|
||||||
static const char *mailcmd[] = { "/bin/xterm", "-e", "/bin/torsocks", "env", "TZ=UTC", "/bin/neomutt", NULL };
|
static const char *mailcmd[] = { "/bin/xterm", "-e", "/bin/proxychains", "-q", "env", "TZ=UTC", "/bin/neomutt", NULL };
|
||||||
static const char *webcmd[] = { "/bin/palemoon", NULL };
|
static const char *webcmd[] = { "/bin/palemoon", NULL };
|
||||||
static const char *volup[] = { "/bin/amixer", "set", "Master", "5%+", NULL};
|
static const char *volup[] = { "/bin/amixer", "set", "-q", "Master", "5%+", NULL};
|
||||||
static const char *voldown[] = { "/bin/amixer", "set", "Master", "5%-", NULL};
|
static const char *voldown[] = { "/bin/amixer", "set", "-q", "Master", "5%-", NULL};
|
||||||
static const char *volmute[] = { "/bin/amixer", "set", "Master", "toggle", NULL};
|
static const char *volmute[] = { "/bin/amixer", "set", "-q", "Master", "toggle", NULL};
|
||||||
static const char *micmute[] = { "/bin/amixer", "set", "Capture", "toggle", NULL};
|
static const char *micmute[] = { "/bin/amixer", "set", "-q", "Capture", "toggle", NULL};
|
||||||
static const char *brightup[] = { "/bin/xbacklight", "-inc", "1", "-perceived", NULL};
|
static const char *brightup[] = { "/bin/xbacklight", "-inc", "1", "-perceived", NULL};
|
||||||
static const char *brightdown[] = { "/bin/xbacklight", "-dec", "1", "-perceived", NULL};
|
static const char *brightdown[] = { "/bin/xbacklight", "-dec", "1", "-perceived", NULL};
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ FREETYPEINC = /usr/include/freetype2
|
|||||||
|
|
||||||
# includes and libs
|
# includes and libs
|
||||||
INCS = -I${X11INC} -I${FREETYPEINC}
|
INCS = -I${X11INC} -I${FREETYPEINC}
|
||||||
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
|
LIBS = -L${X11LIB} -lX11 -lXext ${XINERAMALIBS} ${FREETYPELIBS}
|
||||||
|
|
||||||
# flags
|
# flags
|
||||||
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -D_FORTIFY_SOURCE=2
|
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -D_FORTIFY_SOURCE=2
|
||||||
|
3
dwm.c
3
dwm.c
@ -26,6 +26,7 @@
|
|||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
#include <X11/cursorfont.h>
|
#include <X11/cursorfont.h>
|
||||||
#include <X11/keysym.h>
|
#include <X11/keysym.h>
|
||||||
|
#include <X11/extensions/dpms.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
@ -2984,6 +2985,8 @@ main(int argc, char* argv[])
|
|||||||
die("pledge");
|
die("pledge");
|
||||||
#endif /* __OpenBSD__ */
|
#endif /* __OpenBSD__ */
|
||||||
scan();
|
scan();
|
||||||
|
XSetScreenSaver(dpy, 0, 600, 1, 1);
|
||||||
|
DPMSDisable(dpy);
|
||||||
run();
|
run();
|
||||||
cleanup();
|
cleanup();
|
||||||
XCloseDisplay(dpy);
|
XCloseDisplay(dpy);
|
||||||
|
Loading…
Reference in New Issue
Block a user