feat(tmux-sessionizer): sort alphabetically

This commit is contained in:
Florian Schmitt 2024-12-07 17:13:26 +03:00
parent 62605df4b6
commit 2de2f1722a

View file

@ -4,7 +4,7 @@ pushd ~/Code
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(find . -mindepth 1 -maxdepth 1 -type d | fzf)
selected=$(find . -mindepth 1 -maxdepth 1 -type d | sort -f -r | fzf)
fi
if [[ -z $selected ]]; then