select-download: reverse order, enbael cycle, keep 3 lines visible
This commit is contained in:
parent
e11b838dcc
commit
31a20c5a4a
1 changed files with 1 additions and 1 deletions
2
justfile
2
justfile
|
@ -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
|
select-download library: # Select titles from the {{ library }}, and download them
|
||||||
#!/usr/bin/env bash
|
#!/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=""
|
ASINS=""
|
||||||
while IFS= read -r LINE ; do
|
while IFS= read -r LINE ; do
|
||||||
echo "$LINE"
|
echo "$LINE"
|
||||||
|
|
Loading…
Reference in a new issue