diff options
author | Rasmus Steinke <rasi@xssn.at> | 2015-05-22 21:56:33 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2015-05-22 21:56:33 +0200 |
commit | fb8468c2a0a09ee4776ceedfac3016c122f53b92 (patch) | |
tree | 7874861d1ba225963b6f7c11c398280b612f17da /README.md | |
parent | 5eb165999178f8fb75be51f38e1f58c988dbe62d (diff) | |
download | rofi-pass-fb8468c2a0a09ee4776ceedfac3016c122f53b92.tar.gz |
add README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..5fc2223 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# rofi-pass + +#### bash script to handle pass storages in a convenient way + +## rofi-pass has the following features: + +* Auto Type User and Password. Format of password files are expected to be like: +``` +foobarmysecurepassword +UserName: MyUser +URL http://my.url.foo +``` +* Auto Typing of more than one field. This expects numbered fields in password file: +``` +foobarmysecurepassword +1 UserName: MyUser +2 SomeField: foobar +3 AnotherField: barfoo +URL http://my.url.foo +``` +* Open URLs of entries with hotkey +* Add new Entries to Password Storage +* Edit existing Entries + +## Requirements +* pass +* sed +* rofi +* wmctrl +* xprop +* xdotool +* awk +* bash |