Un-reverse the directory names

This makes it consistent with other places where I use fzf.
This commit is contained in:
Oliver Davies 2024-11-26 15:18:58 +00:00
parent 198f2962bd
commit 5ebf83a334
5 changed files with 12 additions and 12 deletions
nix/lib/shared/scripts

View file

@ -23,7 +23,7 @@
! -name "*.old"
)
selected_path=$(echo "''${items}" | sort | fzf --reverse)
selected_path=$(echo "''${items}" | sort | fzf)
fi
session_name=$(basename "$selected_path" | sed 's/\./_/g')