aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/config/lf/cmds/mk_ln.sh
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-12 01:29:28 +0100
committerene <ene@sils.li>2023-03-12 01:29:28 +0100
commit59e6edd4fd818c60ca4ea416ae4d23163254dfa5 (patch)
treeed5454eb07365377b4ab3ff6011b3ce250fbd9cc /home-manager/config/lf/cmds/mk_ln.sh
parentFix(hm/conf/lf): Reduce wrong mappings (diff)
downloadnixos-config-59e6edd4fd818c60ca4ea416ae4d23163254dfa5.zip
Fix(hm/conf/lf): Rewrite some of the cmds
Diffstat (limited to 'home-manager/config/lf/cmds/mk_ln.sh')
-rw-r--r--home-manager/config/lf/cmds/mk_ln.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/home-manager/config/lf/cmds/mk_ln.sh b/home-manager/config/lf/cmds/mk_ln.sh
deleted file mode 100644
index f2129763..00000000
--- a/home-manager/config/lf/cmds/mk_ln.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env dash
-# shellcheck disable=SC2086
-# shellcheck source=/dev/null
-. %SHELL_LIBRARY_PATH
-
-while IFS= read -r i;do
- set -- "$@" "$i"
-done < "$(tmp 'cat ~/.local/share/lf/files')"
-
-mode="$1"
-shift
-
-if [ "$#" -lt 1 ]; then
- msg "no files to link"
- exit 0
-fi
-
-
-case "$mode" in
- copy)
- while [ "$#" -gt 0 ]; do
- file="$1"
- ans="$(basename "$file")"
-
- while ls -a "$(pwd)" | grep --word-regexp "$ans" > /dev/null;do
- printf "\"%s\" already exists, new name for link: " "$ans"
- read -r ans
- done
-
- ln -s "$file" "$(pwd)/$ans"
-
-
- shift
- done
- ;;
-esac
-rm ~/.local/share/lf/files
-# lf -remote "send clear"
-
-
-
-
-if [ -d /tmp/LIB_FILE_TEMP_DIR/ ];then rm -r /tmp/LIB_FILE_TEMP_DIR/; fi