Tab indent C programs for consistency
This commit is contained in:
parent
3c65a36fd2
commit
1ac5e64193
4 changed files with 240 additions and 242 deletions
|
@ -17,149 +17,147 @@ static char * brightnessfile = "/sys/devices/platform/backlight/backlight/backli
|
|||
|
||||
|
||||
void updatepineled(int red, int brightness) {
|
||||
sprintf(
|
||||
pineledcommand,
|
||||
"sh -c 'echo %d > /sys/class/leds/%s:indicator/brightness'",
|
||||
brightness,
|
||||
red ? "red" : "blue"
|
||||
);
|
||||
system(pineledcommand);
|
||||
sprintf(
|
||||
pineledcommand,
|
||||
"sh -c 'echo %d > /sys/class/leds/%s:indicator/brightness'",
|
||||
brightness,
|
||||
red ? "red" : "blue"
|
||||
);
|
||||
system(pineledcommand);
|
||||
}
|
||||
|
||||
void updatescreenon(int on) {
|
||||
int b = on ? oldbrightness : 0;
|
||||
sprintf(screentogglecommand, "sh -c 'echo %d > %s'", b, brightnessfile);
|
||||
system(screentogglecommand);
|
||||
updatepineled(0, b ? 1 : 0);
|
||||
updatepineled(1, b ? 0 : 1);
|
||||
int b = on ? oldbrightness : 0;
|
||||
sprintf(screentogglecommand, "sh -c 'echo %d > %s'", b, brightnessfile);
|
||||
system(screentogglecommand);
|
||||
updatepineled(0, b ? 1 : 0);
|
||||
updatepineled(1, b ? 0 : 1);
|
||||
}
|
||||
|
||||
void cleanup() {
|
||||
updatescreenon(1);
|
||||
updatepineled(1, 0);
|
||||
updatepineled(0, 0);
|
||||
updatescreenon(1);
|
||||
updatepineled(1, 0);
|
||||
updatepineled(0, 0);
|
||||
}
|
||||
|
||||
static void die(const char *err, ...) {
|
||||
fprintf(stderr, "Error: %s", err);
|
||||
cleanup();
|
||||
exit(1);
|
||||
fprintf(stderr, "Error: %s", err);
|
||||
cleanup();
|
||||
exit(1);
|
||||
}
|
||||
static void usage(void) {
|
||||
die("usage: slock [-v] [cmd [arg ...]]\n");
|
||||
die("usage: slock [-v] [cmd [arg ...]]\n");
|
||||
}
|
||||
|
||||
// Loosely derived from suckless' slock's lockscreen binding logic but
|
||||
// alot more coarse, intentionally so can be triggered while grab_key
|
||||
// for dwm multikey path already holding..
|
||||
void lockscreen(Display *dpy, int screen) {
|
||||
int i, ptgrab, kbgrab;
|
||||
//XSetWindowAttributes wa;
|
||||
Window root;
|
||||
//win,
|
||||
root = RootWindow(dpy, screen);
|
||||
//wa.override_redirect = 1;
|
||||
//win = XCreateWindow(dpy, root, 0, 0,
|
||||
// DisplayWidth(dpy, screen),
|
||||
// DisplayHeight(dpy, screen),
|
||||
// 0, DefaultDepth(dpy, screen),
|
||||
// CopyFromParent,
|
||||
// DefaultVisual(dpy, screen),
|
||||
// CWOverrideRedirect | CWBackPixel, &wa);
|
||||
for (i = 0, ptgrab = kbgrab = -1; i < 9999999; i++) {
|
||||
if (ptgrab != GrabSuccess) {
|
||||
ptgrab = XGrabPointer(dpy, root, False,
|
||||
ButtonPressMask | ButtonReleaseMask |
|
||||
PointerMotionMask, GrabModeAsync,
|
||||
GrabModeAsync, None, None, CurrentTime);
|
||||
}
|
||||
if (kbgrab != GrabSuccess) {
|
||||
kbgrab = XGrabKeyboard(dpy, root, True,
|
||||
GrabModeAsync, GrabModeAsync, CurrentTime);
|
||||
}
|
||||
if (ptgrab == GrabSuccess && kbgrab == GrabSuccess) {
|
||||
XSelectInput(dpy, root, SubstructureNotifyMask);
|
||||
return;
|
||||
}
|
||||
usleep(100000);
|
||||
}
|
||||
return;
|
||||
int i, ptgrab, kbgrab;
|
||||
//XSetWindowAttributes wa;
|
||||
Window root;
|
||||
//win,
|
||||
root = RootWindow(dpy, screen);
|
||||
//wa.override_redirect = 1;
|
||||
//win = XCreateWindow(dpy, root, 0, 0,
|
||||
// DisplayWidth(dpy, screen),
|
||||
// DisplayHeight(dpy, screen),
|
||||
// 0, DefaultDepth(dpy, screen),
|
||||
// CopyFromParent,
|
||||
// DefaultVisual(dpy, screen),
|
||||
// CWOverrideRedirect | CWBackPixel, &wa);
|
||||
for (i = 0, ptgrab = kbgrab = -1; i < 9999999; i++) {
|
||||
if (ptgrab != GrabSuccess) {
|
||||
ptgrab = XGrabPointer(dpy, root, False,
|
||||
ButtonPressMask | ButtonReleaseMask |
|
||||
PointerMotionMask, GrabModeAsync,
|
||||
GrabModeAsync, None, None, CurrentTime);
|
||||
}
|
||||
if (kbgrab != GrabSuccess) {
|
||||
kbgrab = XGrabKeyboard(dpy, root, True,
|
||||
GrabModeAsync, GrabModeAsync, CurrentTime);
|
||||
}
|
||||
if (ptgrab == GrabSuccess && kbgrab == GrabSuccess) {
|
||||
XSelectInput(dpy, root, SubstructureNotifyMask);
|
||||
return;
|
||||
}
|
||||
usleep(100000);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
readinputloop(Display *dpy, int screen) {
|
||||
KeySym keysym;
|
||||
XEvent ev;
|
||||
char buf[32];
|
||||
KeySym keysym;
|
||||
XEvent ev;
|
||||
char buf[32];
|
||||
|
||||
while (running && !XNextEvent(dpy, &ev)) {
|
||||
if (ev.type == KeyPress) {
|
||||
XLookupString(&ev.xkey, buf, sizeof(buf), &keysym, 0);
|
||||
if (lastkeysym == keysym) {
|
||||
lastkeyn++;
|
||||
} else {
|
||||
lastkeysym = keysym;
|
||||
lastkeyn = 1;
|
||||
}
|
||||
while (running && !XNextEvent(dpy, &ev)) {
|
||||
if (ev.type == KeyPress) {
|
||||
XLookupString(&ev.xkey, buf, sizeof(buf), &keysym, 0);
|
||||
if (lastkeysym == keysym) {
|
||||
lastkeyn++;
|
||||
} else {
|
||||
lastkeysym = keysym;
|
||||
lastkeyn = 1;
|
||||
}
|
||||
|
||||
if (lastkeyn < 3)
|
||||
continue;
|
||||
if (lastkeyn < 3)
|
||||
continue;
|
||||
|
||||
lastkeyn = 0;
|
||||
lastkeysym = NULL;
|
||||
|
||||
switch (keysym) {
|
||||
case XF86XK_AudioRaiseVolume:
|
||||
case XF86XK_AudioLowerVolume:
|
||||
screenon = !screenon;
|
||||
updatescreenon(screenon);
|
||||
break;
|
||||
case XF86XK_PowerOff:
|
||||
cleanup();
|
||||
running = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
lastkeyn = 0;
|
||||
lastkeysym = NULL;
|
||||
|
||||
switch (keysym) {
|
||||
case XF86XK_AudioRaiseVolume:
|
||||
case XF86XK_AudioLowerVolume:
|
||||
screenon = !screenon;
|
||||
updatescreenon(screenon);
|
||||
break;
|
||||
case XF86XK_PowerOff:
|
||||
cleanup();
|
||||
running = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
getoldbrightness() {
|
||||
char * buffer = 0;
|
||||
long length;
|
||||
FILE * f = fopen(brightnessfile, "rb");
|
||||
if (f) {
|
||||
fseek(f, 0, SEEK_END);
|
||||
length = ftell(f);
|
||||
fseek(f, 0, SEEK_SET);
|
||||
buffer = malloc(length);
|
||||
if (buffer) {
|
||||
fread(buffer, 1, length, f);
|
||||
}
|
||||
fclose(f);
|
||||
}
|
||||
if (buffer) {
|
||||
oldbrightness = atoi(buffer);
|
||||
}
|
||||
char * buffer = 0;
|
||||
long length;
|
||||
FILE * f = fopen(brightnessfile, "rb");
|
||||
if (f) {
|
||||
fseek(f, 0, SEEK_END);
|
||||
length = ftell(f);
|
||||
fseek(f, 0, SEEK_SET);
|
||||
buffer = malloc(length);
|
||||
if (buffer) {
|
||||
fread(buffer, 1, length, f);
|
||||
}
|
||||
fclose(f);
|
||||
}
|
||||
if (buffer) {
|
||||
oldbrightness = atoi(buffer);
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char **argv) {
|
||||
Display *dpy;
|
||||
Screen *screen;
|
||||
Display *dpy;
|
||||
Screen *screen;
|
||||
|
||||
if (setuid(0))
|
||||
die("setuid(0) failed\n");
|
||||
if (!(dpy = XOpenDisplay(NULL)))
|
||||
die("Cannot open display\n");
|
||||
if (setuid(0))
|
||||
die("setuid(0) failed\n");
|
||||
if (!(dpy = XOpenDisplay(NULL)))
|
||||
die("Cannot open display\n");
|
||||
|
||||
screen = XDefaultScreen(dpy);
|
||||
XSync(dpy, 0);
|
||||
getoldbrightness();
|
||||
lockscreen(dpy, screen);
|
||||
updatescreenon(1);
|
||||
readinputloop(dpy, screen);
|
||||
return 0;
|
||||
screen = XDefaultScreen(dpy);
|
||||
XSync(dpy, 0);
|
||||
getoldbrightness();
|
||||
lockscreen(dpy, screen);
|
||||
updatescreenon(1);
|
||||
readinputloop(dpy, screen);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue