open_download: Warn if download dir is empty
This commit is contained in:
parent
9e25e3b96b
commit
855f8402c6
@ -82,6 +82,12 @@ ls-files() {
|
|||||||
|
|
||||||
mapfile -t entries < <(ls-files)
|
mapfile -t entries < <(ls-files)
|
||||||
|
|
||||||
|
# we need to manually check that there are items, because rofi doesn't show up
|
||||||
|
# if there are no items and -no-custom is passed to rofi.
|
||||||
|
if [ "${#entries[@]}" -eq 0 ] ; then
|
||||||
|
die "Download directory »${DOWNLOAD_DIR}« empty"
|
||||||
|
fi
|
||||||
|
|
||||||
line=$(printf "%s\n" "${entries[@]}" \
|
line=$(printf "%s\n" "${entries[@]}" \
|
||||||
| crop-first-column 55 \
|
| crop-first-column 55 \
|
||||||
| column -s $'\t' -t \
|
| column -s $'\t' -t \
|
||||||
|
Loading…
Reference in New Issue
Block a user