aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/soispha/config/lf/commands/scripts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xhome-manager/soispha/config/lf/commands/scripts/rename26
1 files changed, 0 insertions, 26 deletions
diff --git a/home-manager/soispha/config/lf/commands/scripts/rename b/home-manager/soispha/config/lf/commands/scripts/rename
deleted file mode 100755
index e1aef306..00000000
--- a/home-manager/soispha/config/lf/commands/scripts/rename
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env dash
-
-# shellcheck source=/dev/null
-SHELL_LIBRARY_VERSION="1.1.4" . %SHELL_LIBRARY_PATH
-
-
-prompt "New name: "
-name=""
-while [ -z "$name" ] || [ -e "$name" ]
-do
- read -r name
- if [ -e "$name" ]; then
- prompt "Name already exists, overwrite [y|N]: "
- read -r ans
-
- if [ "$ans" = "y" ]; then
- break
- else
- prompt "Name: "
- fi
- fi
-done
-
-mv "$f" "$name"
-
-# vim: ft=sh