Apply message patch
parent
327aceeb16
commit
9f47c67997
|
|
@ -10,3 +10,12 @@ static const char *colorname[NUMCOLS] = {
|
||||||
|
|
||||||
/* treat a cleared input like a wrong password (color) */
|
/* treat a cleared input like a wrong password (color) */
|
||||||
static const int failonclear = 1;
|
static const int failonclear = 1;
|
||||||
|
|
||||||
|
/* default message */
|
||||||
|
static const char * message = "Suckless: Software that sucks less.";
|
||||||
|
|
||||||
|
/* text color */
|
||||||
|
static const char * text_color = "#ffffff";
|
||||||
|
|
||||||
|
/* text size (must be a valid size) */
|
||||||
|
static const char * text_size = "fixed";
|
||||||
|
|
|
||||||
9
config.h
9
config.h
|
|
@ -10,3 +10,12 @@ static const char *colorname[NUMCOLS] = {
|
||||||
|
|
||||||
/* treat a cleared input like a wrong password (color) */
|
/* treat a cleared input like a wrong password (color) */
|
||||||
static const int failonclear = 1;
|
static const int failonclear = 1;
|
||||||
|
|
||||||
|
/* default message */
|
||||||
|
static const char * message = "Suckless: Software that sucks less.";
|
||||||
|
|
||||||
|
/* text color */
|
||||||
|
static const char * text_color = "#ffffff";
|
||||||
|
|
||||||
|
/* text size (must be a valid size) */
|
||||||
|
static const char * text_size = "fixed";
|
||||||
|
|
|
||||||
4
slock.1
4
slock.1
|
|
@ -6,6 +6,7 @@
|
||||||
.Sh SYNOPSIS
|
.Sh SYNOPSIS
|
||||||
.Nm
|
.Nm
|
||||||
.Op Fl v
|
.Op Fl v
|
||||||
|
.Op Fl m Ar message
|
||||||
.Op Ar cmd Op Ar arg ...
|
.Op Ar cmd Op Ar arg ...
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Nm
|
.Nm
|
||||||
|
|
@ -16,6 +17,9 @@ is executed after the screen has been locked.
|
||||||
.Bl -tag -width Ds
|
.Bl -tag -width Ds
|
||||||
.It Fl v
|
.It Fl v
|
||||||
Print version information to stdout and exit.
|
Print version information to stdout and exit.
|
||||||
|
.It Fl m Ar message
|
||||||
|
Overrides default slock lock message.
|
||||||
|
.TP
|
||||||
.El
|
.El
|
||||||
.Sh SECURITY CONSIDERATIONS
|
.Sh SECURITY CONSIDERATIONS
|
||||||
To make sure a locked screen can not be bypassed by switching VTs
|
To make sure a locked screen can not be bypassed by switching VTs
|
||||||
|
|
|
||||||
77
slock.c
77
slock.c
|
|
@ -61,6 +61,71 @@ die(const char *errstr, ...)
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <linux/oom.h>
|
#include <linux/oom.h>
|
||||||
|
|
||||||
|
static void
|
||||||
|
writemessage(Display *dpy, Window win, int screen)
|
||||||
|
{
|
||||||
|
int len, line_len, width, height, i, j, k, tab_replace, tab_size;
|
||||||
|
XGCValues gr_values;
|
||||||
|
XFontStruct *fontinfo;
|
||||||
|
XColor color, dummy;
|
||||||
|
GC gc;
|
||||||
|
fontinfo = XLoadQueryFont(dpy, text_size);
|
||||||
|
tab_size = 8 * XTextWidth(fontinfo, " ", 1);
|
||||||
|
|
||||||
|
XAllocNamedColor(dpy, DefaultColormap(dpy, screen),
|
||||||
|
text_color, &color, &dummy);
|
||||||
|
|
||||||
|
gr_values.font = fontinfo->fid;
|
||||||
|
gr_values.foreground = color.pixel;
|
||||||
|
gc=XCreateGC(dpy,win,GCFont+GCForeground, &gr_values);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Start formatting and drawing text
|
||||||
|
*/
|
||||||
|
|
||||||
|
len = strlen(message);
|
||||||
|
|
||||||
|
/* Max max line length (cut at '\n') */
|
||||||
|
line_len = 0;
|
||||||
|
k = 0;
|
||||||
|
for (i = j = 0; i < len; i++) {
|
||||||
|
if (message[i] == '\n') {
|
||||||
|
if (i - j > line_len)
|
||||||
|
line_len = i - j;
|
||||||
|
k++;
|
||||||
|
i++;
|
||||||
|
j = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* If there is only one line */
|
||||||
|
if (line_len == 0)
|
||||||
|
line_len = len;
|
||||||
|
|
||||||
|
height = DisplayHeight(dpy, screen)*3/7 - (k*20)/3;
|
||||||
|
width = (DisplayWidth(dpy, screen) - XTextWidth(fontinfo, message, line_len))/2;
|
||||||
|
|
||||||
|
/* Look for '\n' and print the text between them. */
|
||||||
|
for (i = j = k = 0; i <= len; i++) {
|
||||||
|
/* i == len is the special case for the last line */
|
||||||
|
if (i == len || message[i] == '\n') {
|
||||||
|
tab_replace = 0;
|
||||||
|
while (message[j] == '\t' && j < i) {
|
||||||
|
tab_replace++;
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
|
||||||
|
XDrawString(dpy, win, gc, width + tab_size*tab_replace, height + 20*k, message + j, i - j);
|
||||||
|
while (i < len && message[i] == '\n') {
|
||||||
|
i++;
|
||||||
|
j = i;
|
||||||
|
k++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
dontkillme(void)
|
dontkillme(void)
|
||||||
{
|
{
|
||||||
|
|
@ -194,6 +259,7 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens,
|
||||||
locks[screen]->win,
|
locks[screen]->win,
|
||||||
locks[screen]->colors[color]);
|
locks[screen]->colors[color]);
|
||||||
XClearWindow(dpy, locks[screen]->win);
|
XClearWindow(dpy, locks[screen]->win);
|
||||||
|
writemessage(dpy, locks[screen]->win, screen);
|
||||||
}
|
}
|
||||||
oldc = color;
|
oldc = color;
|
||||||
}
|
}
|
||||||
|
|
@ -292,7 +358,7 @@ lockscreen(Display *dpy, struct xrandr *rr, int screen)
|
||||||
static void
|
static void
|
||||||
usage(void)
|
usage(void)
|
||||||
{
|
{
|
||||||
die("usage: slock [-v] [cmd [arg ...]]\n");
|
die("usage: slock [-v] [-m message] [cmd [arg ...]]\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
@ -311,6 +377,9 @@ main(int argc, char **argv) {
|
||||||
case 'v':
|
case 'v':
|
||||||
fprintf(stderr, "slock-"VERSION"\n");
|
fprintf(stderr, "slock-"VERSION"\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
case 'm':
|
||||||
|
message = EARGF(usage());
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
usage();
|
usage();
|
||||||
} ARGEND
|
} ARGEND
|
||||||
|
|
@ -355,10 +424,12 @@ main(int argc, char **argv) {
|
||||||
if (!(locks = calloc(nscreens, sizeof(struct lock *))))
|
if (!(locks = calloc(nscreens, sizeof(struct lock *))))
|
||||||
die("slock: out of memory\n");
|
die("slock: out of memory\n");
|
||||||
for (nlocks = 0, s = 0; s < nscreens; s++) {
|
for (nlocks = 0, s = 0; s < nscreens; s++) {
|
||||||
if ((locks[s] = lockscreen(dpy, &rr, s)) != NULL)
|
if ((locks[s] = lockscreen(dpy, &rr, s)) != NULL) {
|
||||||
|
writemessage(dpy, locks[s]->win, s);
|
||||||
nlocks++;
|
nlocks++;
|
||||||
else
|
} else {
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
XSync(dpy, 0);
|
XSync(dpy, 0);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue