select-download: reverse order, enbael cycle, keep 3 lines visible

This commit is contained in:
Paul Campbell 2024-12-26 11:50:49 +00:00
parent e11b838dcc
commit 31a20c5a4a

View file

@ -30,7 +30,7 @@ select-download-full: # Select titles from the full latest library, and download
select-download library: # Select titles from the {{ library }}, and download them
#!/usr/bin/env bash
SELECTION=$(cat {{library}} | sort -k 2 | fzf -e -m)
SELECTION=$(cat {{library}} | sort -k 2 | fzf --exact --multi --cycle --scroll-off=3 --reverse)
ASINS=""
while IFS= read -r LINE ; do
echo "$LINE"