summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorKalyan Sriram <kalyan@coderkalyan.com>2021-10-22 18:30:50 +0000
committerHubert Hirtz <hubert@hirtz.pm>2021-10-22 20:55:45 +0200
commit36a7d1eead5e8c731dad4d2053595ca8bfcd509a (patch)
treea6f0568cd4ef2e8e8e3e9cc419d381beea1ff28b /README.md
parentRework vertical lists (diff)
config: allow specifying an external password cmd
Storing passwords in plaintext in your configuration file is dangerous! This patch adds support for fetching a password from an external command (i.e. `gpg`, `pass`, `gopass`).
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 99c80bd..49f2564 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,8 @@ cat <<EOF >~/.config/senpai/senpai.yaml
addr: irc.libera.chat
nick: senpai
password: "my password can't be this cute"
+# alternatively, specify a command to fetch your password:
+# password-cmd: "gopass show irc/<username>"
EOF
go run ./cmd/senpai
```