rofi-pass/README.md

38 lines
932 B
Markdown
Raw Normal View History

2015-05-22 15:56:33 -04:00
# rofi-pass
#### bash script to handle pass storages in a convenient way
2015-05-23 00:58:55 -04:00
![rofi-pass](screenshot.png "rofi-pass in action")
2015-05-22 15:56:33 -04:00
## rofi-pass has the following features:
* Auto Type User and Password. Format of password files are expected to be like:
```
foobarmysecurepassword
UserName: MyUser
2015-05-22 18:01:17 -04:00
URL: http://my.url.foo
2015-05-22 15:56:33 -04:00
```
2015-05-22 17:47:23 -04:00
* Auto Typing of more than one field. This expects a CustomOrder field in password file:
2015-05-22 15:56:33 -04:00
```
foobarmysecurepassword
2015-05-22 17:47:23 -04:00
UserName: MyUser
SomeField: foobar
AnotherField: barfoo
2015-05-22 18:02:07 -04:00
URL: http://my.url.foo
2015-05-22 17:47:23 -04:00
CustomOrder: SomeField UserName AnotherField
2015-05-22 15:56:33 -04:00
```
2015-05-23 03:53:02 -04:00
* Handling webpages, that autotab to next field. For these sites add `NOTAB` in last line of the password file
2015-05-22 15:56:33 -04:00
* Open URLs of entries with hotkey
* Add new Entries to Password Storage
* Edit existing Entries
## Requirements
2015-05-23 03:47:59 -04:00
* pass (https://github.com/zx2c4/password-store)
2015-05-22 15:56:33 -04:00
* sed
2015-05-23 03:47:59 -04:00
* rofi (https://github.com/DaveDavenport/rofi)
2015-05-22 15:56:33 -04:00
* wmctrl
* xprop
* xdotool
* awk
* bash