diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/rofi-pass/config | 8 | ||||
-rw-r--r-- | .config/rofi-pass/rofi.rasi | 14 |
2 files changed, 22 insertions, 0 deletions
diff --git a/.config/rofi-pass/config b/.config/rofi-pass/config index d118659..307ad59 100644 --- a/.config/rofi-pass/config +++ b/.config/rofi-pass/config @@ -1,2 +1,10 @@ #!/bin/sh USERNAME_field='path' +_rofi() { + rofi \ + -i \ + -no-auto-select \ + -p 'pass' \ + -config "$XDG_CONFIG_HOME/rofi-pass/rofi.rasi" \ + "$@" +} diff --git a/.config/rofi-pass/rofi.rasi b/.config/rofi-pass/rofi.rasi new file mode 100644 index 0000000..6467262 --- /dev/null +++ b/.config/rofi-pass/rofi.rasi @@ -0,0 +1,14 @@ +// this import automatically resolves to ${XDG_CONFIG_HOME}/rofi/config.rasi +// (see section on 'Multiple file handling' in man rofi-theme(5)) +@import "config.rasi" + +* { + width: 550; + --padding: 6px; +} + +listview { + lines: 12; +} + + |