blob: 32d1e78f0553414c297ba8a25f543cda8da58043 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# rofi-pass
#### bash script to handle pass storages in a convenient way
![rofi-pass](screenshot.png "rofi-pass in action")
## 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 a CustomOrder field in password file:
```
foobarmysecurepassword
UserName: MyUser
SomeField: foobar
AnotherField: barfoo
URL: http://my.url.foo
CustomOrder: SomeField UserName AnotherField
```
* Open URLs of entries with hotkey
* Add new Entries to Password Storage
* Edit existing Entries
## Requirements
* pass
* sed
* rofi
* wmctrl
* xprop
* xdotool
* awk
* bash
|