Fix passbemenu file find command
This commit is contained in:
parent
3cc575be9e
commit
8306da0f09
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ let
|
||||||
export BEMENU_BACKEND=wayland
|
export BEMENU_BACKEND=wayland
|
||||||
|
|
||||||
prefix=''${PASSWORD_STORE_DIR-~/.password-store}
|
prefix=''${PASSWORD_STORE_DIR-~/.password-store}
|
||||||
password_files=( "$prefix"/**/*.gpg )
|
password_files=( $(find -L "$prefix" -type f -name '*.gpg') )
|
||||||
password_files=( "''${password_files[@]#"$prefix"/}" )
|
password_files=( "''${password_files[@]#"$prefix"/}" )
|
||||||
password_files=( "''${password_files[@]%.gpg}" )
|
password_files=( "''${password_files[@]%.gpg}" )
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue