about summary refs log tree commit diff stats
path: root/pkgs/by-name/ll
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/ll')
-rwxr-xr-xpkgs/by-name/ll/ll/ll.sh19
-rw-r--r--pkgs/by-name/ll/ll/package.nix9
2 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/by-name/ll/ll/ll.sh b/pkgs/by-name/ll/ll/ll.sh
deleted file mode 100755
index 3fb8d9aa..00000000
--- a/pkgs/by-name/ll/ll/ll.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env dash
-
-last_directory="$(mktemp)"
-cleanup() {
-    rm "$last_directory"
-}
-trap cleanup EXIT
-
-command lf -last-dir-path="$last_directory" "$@"
-
-dir="$(cat "$last_directory")"
-if cd "$dir"; then
-    [ -d "$XDG_RUNTIME_DIR/ll" ] || mkdir "$XDG_RUNTIME_DIR/ll"
-    echo "$dir" >"$XDG_RUNTIME_DIR/ll/last_directory"
-else
-    die "$dir does not exist!"
-fi
-
-# vim: ft=sh
diff --git a/pkgs/by-name/ll/ll/package.nix b/pkgs/by-name/ll/ll/package.nix
deleted file mode 100644
index caca5b4e..00000000
--- a/pkgs/by-name/ll/ll/package.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{writeShellApplication}:
-writeShellApplication {
-  name = "ll";
-  text = builtins.readFile ./ll.sh;
-
-  # This is sourced in the shell
-  inheritPath = true;
-  bashOptions = [];
-}