emacs/eshell: restore mistakenly deleted custom eshell prompt
[~bandali/configs] / .config / rofi-pass / config
CommitLineData
8bbb67ce
AB
1# permanently set alternative root dir
2# root=/path/to/root
3
4# rofi command. Make sure to have "$@" as last argument
5_rofi () {
6 #rofi -no-auto-select -kb-accept-entry "!Return" -i -no-levenshtein-sort "$@"
7 rofi -i -no-auto-select -kb-accept-entry "!Return" "$@"
8}
9
10# xdotool needs the keyboard layout to be set using setxkbmap
11# You can do this in your autostart scripts (e.g. xinitrc)
12
13# If for some reason, you cannot do this, you can set the command here.
14# and set fix_layout to true
15fix_layout=false
16
17layout_cmd () {
18 setxkbmap us
19}
20
21# fields to be used
22URL_field='url'
23USERNAME_field='user'
24AUTOTYPE_field='autotype'
25
26# delay to be used for :delay keyword
27delay=2
28
29## Programs to be used
30# Editor
31EDITOR='gvim -f'
32
33# Browser
34BROWSER='chromium'
35
36## Misc settings
37
38default_do='menu' # menu, autotype, copyPass, typeUser, typePass, copyUser, copyUrl, viewEntry, typeMenu, actionMenu, copyMenu, openUrl
39auto_enter='false'
40notify='false'
41default_autotype='user :tab pass'
42
43# color of the help messages
44# leave empty for autodetection
45help_color="#4872FF"
46
47# Clipboard settings
48# Possible options: primary, clipboard, both
49clip=primary
50
51# Options for generating new password entries
52# default_user is also used for password files that have no user field.
53default_user=aminb
54default_user2=bandali
55password_length=30
56
57# Custom Keybindings
58#autotype="Alt+1"
59autotype="Alt+m"
60type_user="Alt+2"
61type_pass="Alt+3"
62open_url="Alt+4"
63copy_name="Alt+u"
64copy_url="Alt+l"
65copy_pass="Alt+p"
66show="Alt+o"
67copy_entry="Alt+2"
68type_entry="Alt+1"
69copy_menu="Alt+c"
70action_menu="Alt+a"
71type_menu="Alt+t"
72help="Alt+h"
73switch="Alt+x"
74insert_pass="Alt+n"