From efaf850cd9aca38d0e919ae40adfc442d229b73e Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Mon, 14 Sep 2015 19:55:08 -0700 Subject: [PATCH] Add README --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ad6e2b3 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +totptool +======== + +Tooling for generating and managing large numbers of TOTP secrets. + +```console +$ totptool +Usage: totptool [options] [args] + +Options: + -h --help Show this screen + -r --root:path Use path as the totp root for secrets + -v --version Show version of totptool + +Subcommands: + code + Generate a two-factor auth code for + + gen + Generate a new two-factor auth secret for + + + ls + List all the names of the secrets that + totptool tracks +``` + +Because I wrote this for me and I can say whatever I want as the arbitrary +demands, I have it storing all TOTP secrets in my common synced folder +`~/life`. Edit the code or use `--root` to change this. + +Lifecycle +--------- + +`totptool gen ` -> `totptool code ` + +```console +$ totptool code $(totptool ls | dmenu) | xclip -sel clip +```