-
Notifications
You must be signed in to change notification settings - Fork 1
/
bloqueo.c
44 lines (39 loc) · 1.11 KB
/
bloqueo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <crypt.h>
#include <string.h>
#include <pwd.h>
#include <sys/stat.h> //ver si el archivo existe
int doesFileExist(char filename[]);
int main(int argc, char *argv[]){
Display *display;
Window root;
int len = 0, i;
XEvent ev;
if ((display = XOpenDisplay(NULL)) == NULL) {
fprintf(stderr, "could not connect to $DISPLAY\n");
exit(1);
}
root = DefaultRootWindow(display);
XGrabPointer(display, root, 1, ButtonPress, GrabModeAsync, GrabModeAsync, None, None, CurrentTime);
XGrabKeyboard(display, root, 0, GrabModeAsync, GrabModeAsync, CurrentTime);
XSelectInput(display, root, KeyPressMask);
while (XNextEvent(display, &ev), 1) {
//si el archivo .unlock existe -> desbloqueamos la pantalla
if (fileExist(".unlock")){
XUngrabKeyboard(display, CurrentTime);
XUngrabPointer(display, CurrentTime);
exit(0);
}
}
}
//regresa 1 si el archivo existe 0 en otro caso
int fileExist(char filename[]) {
struct stat st;
int result = stat(filename, &st);
return result == 0;
}