defaults changed

This commit is contained in:
mrdotx 2021-07-30 18:43:57 +02:00
parent 248c80a46d
commit 6ccc752e44
No known key found for this signature in database
GPG Key ID: 433F70E636E6EB87
3 changed files with 6 additions and 6 deletions

2
README
View File

@ -33,7 +33,7 @@ To use pinentry-dmenu add in `~/.gnupg/gpg-agent.conf`:
The config is located in `~/.gnupg/pinentry-dmenu.conf`. The config is located in `~/.gnupg/pinentry-dmenu.conf`.
monitor = -1; monitor = -1;
center = true; center = false;
center_width = 1024; center_width = 1024;
bottom = false; bottom = false;
embedded = false; embedded = false;

View File

@ -2,7 +2,7 @@
/* Default settings; can be overriden by pinentry-dmenu.conf */ /* Default settings; can be overriden by pinentry-dmenu.conf */
static unsigned int mon = -1; static unsigned int mon = -1;
static unsigned int center = 1; static unsigned int center = 0;
static unsigned int centerwidth = 1024; static unsigned int centerwidth = 1024;
static unsigned int bottom = 0; static unsigned int bottom = 0;
static unsigned int embedded = 0; static unsigned int embedded = 0;

View File

@ -28,7 +28,7 @@ You can change the path to the config file with the environment variable
.BI "monitor =" " -1" .BI "monitor =" " -1"
pinentry-dmenu is displayed on the monitor number supplied. Monitor numbers are starting from 0. pinentry-dmenu is displayed on the monitor number supplied. Monitor numbers are starting from 0.
.TP .TP
.BI "center =" " true" .BI "center =" " false"
pinentry-dmenu appears in the center of the screen. pinentry-dmenu appears in the center of the screen.
.TP .TP
.BI "center_width =" " 1024" .BI "center_width =" " 1024"
@ -227,7 +227,7 @@ Paste from primary X selection
.\} .\}
.nf .nf
monitor = -1; monitor = -1;
center = true; center = false;
center_width = 1024; center_width = 1024;
bottom = false; bottom = false;
embedded = false; embedded = false;