diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-07-03 18:20:43 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-07-03 18:20:43 +0900 |
| commit | dd0f76a109c0c28ccca0f8bc5dd97fbfe0686bde (patch) | |
| tree | a04db4f300816ec5a9faa06ca774cd760ccec8da /ar/.config | |
| parent | 942e0be20b358663e84d0bc9d734998dc59ca3e1 (diff) | |
Diffstat (limited to 'ar/.config')
| -rw-r--r-- | ar/.config/lf/lfrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ar/.config/lf/lfrc b/ar/.config/lf/lfrc index fd3a409..023213b 100644 --- a/ar/.config/lf/lfrc +++ b/ar/.config/lf/lfrc @@ -385,9 +385,9 @@ cmd moveto ${{ clear; tput cup $(($(tput lines)/3)); tput bold echo "From:" echo "$fx" | sed 's/^/ /' - printf "To:\n %s\n\n\tmove?[y/N]" "$destpath" + printf "To:\n %s\n\n\tmove?[Y/n]" "$destpath" read -r ans - [ "$ans" != "y" ] && exit + case "$ans" in [nN]*) exit;; esac if [ -w "$destpath" ]; then for x in $fx; do mv -iv "$x" "$destpath"; done && notify-send "🚚 File(s) moved." "File(s) moved to $destpath." |
