diff options
author | Moritz Luedecke <ritze@skweez.net> | 2017-09-23 15:20:57 +0200 |
---|---|---|
committer | Moritz Luedecke <ritze@skweez.net> | 2017-09-23 15:20:57 +0200 |
commit | 953057bab57595002f8235c52fc02c9eedb9e7f6 (patch) | |
tree | 78de42be8091e8b5783366198980a6f6a3f1fa48 /README | |
parent | c3077abf4ea915f28084bccd0dcf16289dca758d (diff) |
Add examples to README
Diffstat (limited to 'README')
-rw-r--r-- | README | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -30,6 +30,7 @@ To use pinentry-dmenu add in `~/.gnupg/gpg-agent.conf`: The config is located in `~/.gnupg/pinentry-dmenu.conf`. ^ Parameter ^ Default ^ Description ^ +| ------------------- | ----------------- | ----------- | | asterisk | * | Defines the symbol which is showed for each typed character | | buttom | false | pinentry-dmenu appears at the bottom of the screen | | min_password_length | 32 | The minimal space of the password field. This value has affect to the description field after the password field | @@ -40,9 +41,25 @@ The config is located in `~/.gnupg/pinentry-dmenu.conf`. | prompt_fg | #222222 | Defines the prompt foreground color | | normal_bg | #bbbbbb | Defines the normal background color | | normal_fg | #222222 | Defines the normal foreground color | -| select_bg | #eeeeee | Defines the selected background color| +| select_bg | #eeeeee | Defines the selected background color | | select_fg | #005577 | Defines the selected foreground color | | desc_bg | #bbbbbb | Defines the description background color | | desc_fg | #222222 | Defines the description foreground color | | embedded | false | Embed into window | + +Example +------- +``` +asterisk= "# "; +prompt = "$"; +font = "Noto Sans UI:size=13"; +prompt_fg = "#eeeeee"; +prompt_bg = "#d9904a"; +normal_fg = "#ffffff"; +normal_bg = "#000000"; +select_fg = "#eeeeee"; +select_bg = "#d9904a"; +desc_fg = "#eeeeee"; +desc_bg = "#d9904a"; +``` |