aboutsummaryrefslogtreecommitdiff
path: root/.repos/slock
diff options
context:
space:
mode:
Diffstat (limited to '.repos/slock')
-rw-r--r--.repos/slock/config.h33
-rw-r--r--.repos/slock/slock.c4
2 files changed, 15 insertions, 22 deletions
diff --git a/.repos/slock/config.h b/.repos/slock/config.h
index 66a2d9e..093582e 100644
--- a/.repos/slock/config.h
+++ b/.repos/slock/config.h
@@ -3,11 +3,11 @@ static const char *user = "melvin";
static const char *group = "melvin";
static const char *colorname[NUMCOLS] = {
- [BACKGROUND] = "black", /* after initialization */
- [INIT] = "#2d2d2d", /* after initialization */
- [INPUT] = "#2d2d2d", /* during input */
- [FAILED] = "#cc3333", /* wrong password */
- [PAM] = "#9400D3", /* waiting for PAM */
+ [BACKGROUND] = "black", /* after initialization */
+ [INIT] = "black", /* after initialization */
+ [INPUT] = "black", /* during input */
+ [FAILED] = "red", /* wrong password */
+ [PAM] = "green", /* waiting for PAM */
};
/* treat a cleared input like a wrong password (color) */
@@ -17,25 +17,16 @@ static const int failonclear = 1;
static const char* pam_service = "login";
/* insert grid pattern with scale 1:1, the size can be changed with logosize */
-static const int logosize = 75;
-static const int logow = 10; /* grid width and height for right center alignment*/
-static const int logoh = 5;
+static const int logosize = 50;
+static const int logow = 2; /* grid width and height for right center alignment*/
+static const int logoh = 2;
-static XRectangle rectangles[11] = {
+static XRectangle rectangles[4] = {
/* x y w h */
- { 0, 0, 1, 5 },
+ { 0, 0, 1, 1 },
+ { 0, 1, 1, 1 },
+ { 1, 0, 1, 1 },
{ 1, 1, 1, 1 },
- { 2, 2, 1, 1 },
- { 3, 1, 1, 1 },
- { 4, 0, 1, 5 },
-
- { 6, 0, 1, 5 },
- { 7, 0, 2, 1 },
- { 7, 2, 2, 1 },
- { 7, 4, 2, 1 },
- { 9, 1, 1, 1 },
- { 9, 3, 1, 1 },
-
};
/* time in seconds before the monitor shuts down */
diff --git a/.repos/slock/slock.c b/.repos/slock/slock.c
index 4bf2b36..8f09c7e 100644
--- a/.repos/slock/slock.c
+++ b/.repos/slock/slock.c
@@ -17,6 +17,7 @@
#include <sys/types.h>
#include <X11/extensions/Xrandr.h>
#include <X11/extensions/dpms.h>
+#include <X11/XF86keysym.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif
@@ -228,7 +229,8 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens,
IsPrivateKeypadKey(ksym))
continue;
switch (ksym) {
- case XK_Return:
+ //case XK_Return:
+ case XF86XK_Favorites:
passwd[len] = '\0';
errno = 0;
retval = pam_start(pam_service, hash, &pamc, &pamh);