|
|
|
@ -183,7 +183,7 @@ insert(const char *str, ssize_t n) {
|
|
|
|
|
static void
|
|
|
|
|
drawwin(void) {
|
|
|
|
|
unsigned int curpos;
|
|
|
|
|
int x = 0, pb, pbw = 0, i;
|
|
|
|
|
int x = 0, fh = drw->fonts->h, pb, pbw = 0, i;
|
|
|
|
|
size_t asterlen = strlen(asterisk);
|
|
|
|
|
size_t pdesclen;
|
|
|
|
|
int leftinput;
|
|
|
|
@ -255,7 +255,7 @@ drawwin(void) {
|
|
|
|
|
|
|
|
|
|
if ((curpos += lrpad / 2 - 1) < leftinput) {
|
|
|
|
|
drw_setscheme(drw, scheme[SchemeNormal]);
|
|
|
|
|
drw_rect(drw, x + curpos, 2, 2, bh - 4, 1, 0);
|
|
|
|
|
drw_rect(drw, x + curpos, 2 + (bh - fh) / 2, 2, fh - 4, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free(censort);
|
|
|
|
@ -293,6 +293,7 @@ setup(void) {
|
|
|
|
|
|
|
|
|
|
/* Calculate menu geometry */
|
|
|
|
|
bh = drw->fonts->h + 2;
|
|
|
|
|
bh = MAX(bh, lineheight);
|
|
|
|
|
mh = bh;
|
|
|
|
|
#ifdef XINERAMA
|
|
|
|
|
info = XineramaQueryScreens(dpy, &n);
|
|
|
|
@ -744,6 +745,9 @@ main(int argc, char *argv[]) {
|
|
|
|
|
if (config_lookup_int(&cfg, "min_password_length", &val)) {
|
|
|
|
|
minpwlen = val;
|
|
|
|
|
}
|
|
|
|
|
if (config_lookup_int(&cfg, "height", &val)) {
|
|
|
|
|
lineheight = MAX(val, min_lineheight);
|
|
|
|
|
}
|
|
|
|
|
if (config_lookup_int(&cfg, "monitor", &val)) {
|
|
|
|
|
mon = val;
|
|
|
|
|
}
|
|
|
|
|