[bin] Use lf to browse folders inside of the folder-launcher

This commit is contained in:
Sebastian Schulze 2022-05-10 10:36:52 +02:00
parent 7c78a893ad
commit fa426a251c
No known key found for this signature in database
GPG Key ID: F6BA63C6A7D3044E
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@ FIND_FOLDER=${1:-~/Documents}
FOLDER=$(find "${FIND_FOLDER}" -maxdepth 4 -type d |fzf --preview="exa --tree --icons --level 2 {1}" --preview-window="right")
if [ ! -z "${FOLDER}" ]; then
browse-folder "${FOLDER}"&
lf "${FOLDER}"
fi