default values for line_height and border_width changed

This commit is contained in:
mrdotx 2021-07-26 18:30:48 +02:00
parent 6e342e888c
commit 3d43617afc
No known key found for this signature in database
GPG Key ID: 433F70E636E6EB87
3 changed files with 8 additions and 8 deletions

4
README
View File

@ -31,8 +31,8 @@ The config is located in `~/.gnupg/pinentry-dmenu.conf`.
monitor = -1; monitor = -1;
bottom = false; bottom = false;
embedded = false; embedded = false;
line_height = 26; line_height = 22;
border_width = 0; border_width = 2;
font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"; font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true";
min_password_length = 32; min_password_length = 32;
asterisk= "*"; asterisk= "*";

View File

@ -6,8 +6,8 @@ static int bottom = 0;
static int embedded = 0; static int embedded = 0;
static int minpwlen = 32; static int minpwlen = 32;
static unsigned int lineheight = 26; static unsigned int lineheight = 22;
static unsigned int borderwidth = 0; static unsigned int borderwidth = 2;
static const char *fonts[] = { static const char *fonts[] = {
"DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true" "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"

View File

@ -34,10 +34,10 @@ pinentry-dmenu appears at the bottom of the screen.
.BI "embedded =" " false" .BI "embedded =" " false"
Embed into window. Embed into window.
.TP .TP
.BI "line_height =" " 26" .BI "line_height =" " 22"
Defines menu line of at least 'line_height' pixels tall. Defines menu line of at least 'line_height' pixels tall.
.TP .TP
.BI "border_width =" " 0" .BI "border_width =" " 2"
Defines the border width for the menu. Defines the border width for the menu.
.TP .TP
.BI "font =" " DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true" .BI "font =" " DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"
@ -194,8 +194,8 @@ Paste from primary X selection
monitor = -1; monitor = -1;
bottom = false; bottom = false;
embedded = false; embedded = false;
line_height = 26; line_height = 22;
border_width = 0; border_width = 2;
font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"; font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true";
min_passwword_length = 32; min_passwword_length = 32;
asterisk= "*"; asterisk= "*";