about summary refs log tree commit diff stats
path: root/home-manager/config/lf/cmds/mk_ln
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/config/lf/cmds/mk_ln')
-rwxr-xr-xhome-manager/config/lf/cmds/mk_ln6
1 files changed, 3 insertions, 3 deletions
diff --git a/home-manager/config/lf/cmds/mk_ln b/home-manager/config/lf/cmds/mk_ln
index 6b9e2b30..6b9e9761 100755
--- a/home-manager/config/lf/cmds/mk_ln
+++ b/home-manager/config/lf/cmds/mk_ln
@@ -4,7 +4,7 @@
 # . ~/.local/lib/shell/lib
 . %SHELL_LIBRARY_PATH
 
-LIB_TEMP_DIR_FOR_SCRIPT=$(mktemp -d)
+
 
 while IFS= read -r i;do
     set -- "$@" "$i"
@@ -25,8 +25,8 @@ case "$mode" in
             ans="$(basename "$file")"
 
             while [ -e "$ans" ];do
-                printf "\"%s\" already exists, new name for link: " "$ans"
-                read -r ans
+                prompt "$ans already exists, new name for link: "
+                read -r ans < /dev/tty
             done
 
             ln -s "$file" "$(pwd)/$ans"