From e5af81a5f9d9d3a2af0d3e970815e3c73beb0840 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 28 May 2023 22:10:24 +0200 Subject: Fix(hm/conf/lf/cmds): Rework some of them --- home-manager/config/lf/commands/scripts/mk_scr | 29 +++++++++++++++++--------- 1 file changed, 19 insertions(+), 10 deletions(-) (limited to 'home-manager/config/lf/commands/scripts/mk_scr') diff --git a/home-manager/config/lf/commands/scripts/mk_scr b/home-manager/config/lf/commands/scripts/mk_scr index 99f9f1d6..2f265aad 100755 --- a/home-manager/config/lf/commands/scripts/mk_scr +++ b/home-manager/config/lf/commands/scripts/mk_scr @@ -3,20 +3,29 @@ # shellcheck source=/dev/null SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH -script=$(mktmp) -cat "%SHELL_LIBRARY_TEMPLATE" > "$script" -readp "Script Name: " script_name -scr="$(pwd)"/"$script_name" +prompt "Script name: " +name="" +while [ -z "$name" ] || [ -e "$name" ] +do + read -r name + if [ -e "$name" ]; then + prompt "Script already exists, overwrite [y|N]: " + read -r ans -while [ -e "$scr" ];do - readp "$script_name already exists, new name for script: " script_name - scr="$(pwd)"/"$script_name" + if [ "$ans" = "y" ]; then + break + else + prompt "Script Name: " + fi + fi done -cat "$script" > "$scr" -chmod +x "$scr" +script="$(pwd)"/"$name" + +cat "%SHELL_LIBRARY_TEMPLATE" > "$script" +chmod +x "$script" +"$VISUAL" "$script" -"$VISUAL" "$scr" # vim: ft=sh -- cgit 1.4.1