diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-02-28 11:53:16 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-02-28 11:53:16 +0100 |
commit | 2a3f4b57bc532959b98e823d6ad16306a5acde1b (patch) | |
tree | 93b2d5721e4bc3ecd29669119c011dd24a324381 | |
parent | b1f98f302b57f009492fac779ff2e8471dffa2b3 (diff) |
modified rofi config for rofi-pass
-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; +} + + |