Compare commits

...

2 Commits

Author SHA1 Message Date
Franck STAUFFER 44ca479974
Disables DPMS and Screensaver 2021-06-16 22:27:04 +02:00
Franck STAUFFER ddb0be9a54
Small changes on shortcuts 2021-06-16 22:25:25 +02:00
3 changed files with 10 additions and 7 deletions

View File

@ -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 *pmenucmd[] = { "/bin/passmenu", NULL };
static const char *termcmd[] = { "/bin/xterm", NULL };
static const char *lockcmd[] = { "/bin/slock", NULL };
static const char *mailcmd[] = { "/bin/xterm", "-e", "/bin/torsocks", "env", "TZ=UTC", "/bin/neomutt", NULL };
static const char *lockcmd[] = { "/bin/xlock", 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 *volup[] = { "/bin/amixer", "set", "Master", "5%+", NULL};
static const char *voldown[] = { "/bin/amixer", "set", "Master", "5%-", NULL};
static const char *volmute[] = { "/bin/amixer", "set", "Master", "toggle", NULL};
static const char *micmute[] = { "/bin/amixer", "set", "Capture", "toggle", NULL};
static const char *volup[] = { "/bin/amixer", "set", "-q", "Master", "5%+", NULL};
static const char *voldown[] = { "/bin/amixer", "set", "-q", "Master", "5%-", NULL};
static const char *volmute[] = { "/bin/amixer", "set", "-q", "Master", "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 *brightdown[] = { "/bin/xbacklight", "-dec", "1", "-perceived", NULL};

View File

@ -22,7 +22,7 @@ FREETYPEINC = /usr/include/freetype2
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
LIBS = -L${X11LIB} -lX11 -lXext ${XINERAMALIBS} ${FREETYPELIBS}
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -D_FORTIFY_SOURCE=2

3
dwm.c
View File

@ -26,6 +26,7 @@
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/extensions/dpms.h>
#include <errno.h>
#include <locale.h>
#include <signal.h>
@ -2984,6 +2985,8 @@ main(int argc, char* argv[])
die("pledge");
#endif /* __OpenBSD__ */
scan();
XSetScreenSaver(dpy, 0, 600, 1, 1);
DPMSDisable(dpy);
run();
cleanup();
XCloseDisplay(dpy);