default values changed
This commit is contained in:
parent
7b30390e26
commit
10edec7695
6
README
6
README
@ -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 = false;
|
center = true;
|
||||||
center_width = 1024;
|
center_width = 1024;
|
||||||
bottom = false;
|
bottom = false;
|
||||||
embedded = false;
|
embedded = false;
|
||||||
@ -47,7 +47,7 @@ normal_bg_alpha = 230;
|
|||||||
select_fg_alpha = 255;
|
select_fg_alpha = 255;
|
||||||
select_bg_alpha = 255;
|
select_bg_alpha = 255;
|
||||||
desc_fg_alpha = 255;
|
desc_fg_alpha = 255;
|
||||||
desc_bg_alpha = 255;
|
desc_bg_alpha = 230;
|
||||||
font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true";
|
font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true";
|
||||||
prompt = "";
|
prompt = "";
|
||||||
asterisk = "*";
|
asterisk = "*";
|
||||||
@ -58,4 +58,4 @@ normal_bg = "#000000";
|
|||||||
select_fg = "#ffffff";
|
select_fg = "#ffffff";
|
||||||
select_bg = "#4185d7";
|
select_bg = "#4185d7";
|
||||||
desc_fg = "#cccccc";
|
desc_fg = "#cccccc";
|
||||||
desc_bg = "#4185d7";
|
desc_bg = "#000000";
|
||||||
|
@ -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 = 0;
|
static unsigned int center = 1;
|
||||||
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;
|
||||||
@ -15,7 +15,7 @@ static unsigned int alphas[SchemeLast][2] = {
|
|||||||
[SchemePrompt] = { 255, 255 },
|
[SchemePrompt] = { 255, 255 },
|
||||||
[SchemeNormal] = { 255, 230 },
|
[SchemeNormal] = { 255, 230 },
|
||||||
[SchemeSelect] = { 255, 255 },
|
[SchemeSelect] = { 255, 255 },
|
||||||
[SchemeDesc] = { 255, 255 },
|
[SchemeDesc] = { 255, 230 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *fonts[] = {
|
static const char *fonts[] = {
|
||||||
@ -28,5 +28,5 @@ static const char *colors[SchemeLast][2] = {
|
|||||||
[SchemePrompt] = { "#cccccc", "#4185d7" },
|
[SchemePrompt] = { "#cccccc", "#4185d7" },
|
||||||
[SchemeNormal] = { "#cccccc", "#000000" },
|
[SchemeNormal] = { "#cccccc", "#000000" },
|
||||||
[SchemeSelect] = { "#ffffff", "#4185d7" },
|
[SchemeSelect] = { "#ffffff", "#4185d7" },
|
||||||
[SchemeDesc] = { "#cccccc", "#4185d7" },
|
[SchemeDesc] = { "#cccccc", "#000000" },
|
||||||
};
|
};
|
||||||
|
@ -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 =" " false"
|
.BI "center =" " true"
|
||||||
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"
|
||||||
@ -75,7 +75,7 @@ Defines the selected background alpha value.
|
|||||||
.BI "desc_fg_alpha =" " 255"
|
.BI "desc_fg_alpha =" " 255"
|
||||||
Defines the description foreground alpha value.
|
Defines the description foreground alpha value.
|
||||||
.TP
|
.TP
|
||||||
.BI "desc_bg_alpha =" " 255"
|
.BI "desc_bg_alpha =" " 230"
|
||||||
Defines the description background alpha value.
|
Defines the description background alpha value.
|
||||||
.TP
|
.TP
|
||||||
.BI "font =" " DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"
|
.BI "font =" " DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"
|
||||||
@ -111,7 +111,7 @@ Defines the selected background color.
|
|||||||
.BI "desc_fg =" " #cccccc"
|
.BI "desc_fg =" " #cccccc"
|
||||||
Defines the description foreground color.
|
Defines the description foreground color.
|
||||||
.TP
|
.TP
|
||||||
.BI "desc_bg =" " #4185d7"
|
.BI "desc_bg =" " #000000"
|
||||||
Defines the description background color.
|
Defines the description background color.
|
||||||
|
|
||||||
.SH USAGE
|
.SH USAGE
|
||||||
@ -227,7 +227,7 @@ Paste from primary X selection
|
|||||||
.\}
|
.\}
|
||||||
.nf
|
.nf
|
||||||
monitor = -1;
|
monitor = -1;
|
||||||
center = false;
|
center = true;
|
||||||
center_width = 1024;
|
center_width = 1024;
|
||||||
bottom = false;
|
bottom = false;
|
||||||
embedded = false;
|
embedded = false;
|
||||||
@ -241,7 +241,7 @@ normal_bg_alpha = 230;
|
|||||||
select_fg_alpha = 255;
|
select_fg_alpha = 255;
|
||||||
select_bg_alpha = 255;
|
select_bg_alpha = 255;
|
||||||
desc_fg_alpha = 255;
|
desc_fg_alpha = 255;
|
||||||
desc_bg_alpha = 255;
|
desc_bg_alpha = 230;
|
||||||
font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true";
|
font = "DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true";
|
||||||
prompt = "";
|
prompt = "";
|
||||||
asterisk = "*";
|
asterisk = "*";
|
||||||
@ -252,7 +252,7 @@ normal_bg = "#000000";
|
|||||||
select_fg = "#ffffff";
|
select_fg = "#ffffff";
|
||||||
select_bg = "#4185d7";
|
select_bg = "#4185d7";
|
||||||
desc_fg = "#cccccc";
|
desc_fg = "#cccccc";
|
||||||
desc_bg = "#4185d7";
|
desc_bg = "#000000";
|
||||||
|
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
.B pinentry-dmenu
|
.B pinentry-dmenu
|
||||||
|
Loading…
Reference in New Issue
Block a user