From 69099861601d5649df737d82021a0cf5abb51403 Mon Sep 17 00:00:00 2001
From: Soispha <soispha@vhack.eu>
Date: Sun, 20 Aug 2023 19:05:35 +0200
Subject: Feat(hm/conf/lf): Replace rename script by rename c binary

---
 .../soispha/config/lf/commands/default.nix         |  3 ++-
 .../soispha/config/lf/commands/scripts/rename      | 26 ----------------------
 home-manager/soispha/config/lf/default.nix         |  3 ++-
 3 files changed, 4 insertions(+), 28 deletions(-)
 delete mode 100755 home-manager/soispha/config/lf/commands/scripts/rename

(limited to 'home-manager/soispha')

diff --git a/home-manager/soispha/config/lf/commands/default.nix b/home-manager/soispha/config/lf/commands/default.nix
index fa366d37..95cd2991 100644
--- a/home-manager/soispha/config/lf/commands/default.nix
+++ b/home-manager/soispha/config/lf/commands/default.nix
@@ -3,6 +3,7 @@
   sysLib,
   shell_library,
   system,
+  lf_rename,
   ...
 }: let
   functionCall = {
@@ -197,7 +198,7 @@ in {
     dependencies = [];
   };
   rename = pipe {
-    file = ./scripts/rename;
+    file = "${lf_rename.packages."${system}".default}";
     dependencies = [];
   };
   stripspace = pipe {
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
diff --git a/home-manager/soispha/config/lf/default.nix b/home-manager/soispha/config/lf/default.nix
index 9f43a891..a4f7d7b9 100644
--- a/home-manager/soispha/config/lf/default.nix
+++ b/home-manager/soispha/config/lf/default.nix
@@ -3,10 +3,11 @@
   sysLib,
   nixosConfig,
   shell_library,
+  lf_rename,
   system,
   ...
 }: let
-  commands = import ./commands {inherit pkgs sysLib shell_library system;};
+  commands = import ./commands {inherit pkgs sysLib shell_library system lf_rename;};
   keybindings = import ./keybindings {inherit nixosConfig;};
 in {
   xdg.configFile."lf/icons".source = ./icons;
-- 
cgit 1.4.1