summaryrefslogtreecommitdiff
path: root/ar/.config/lf
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-07-03 18:20:43 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-07-03 18:20:43 +0900
commitdd0f76a109c0c28ccca0f8bc5dd97fbfe0686bde (patch)
treea04db4f300816ec5a9faa06ca774cd760ccec8da /ar/.config/lf
parent942e0be20b358663e84d0bc9d734998dc59ca3e1 (diff)
modified lf/lfrcHEADmaster
Diffstat (limited to 'ar/.config/lf')
-rw-r--r--ar/.config/lf/lfrc4
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."