summaryrefslogtreecommitdiffstats
path: root/.local/bin/lf-select
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/lf-select')
-rwxr-xr-x.local/bin/lf-select9
1 files changed, 0 insertions, 9 deletions
diff --git a/.local/bin/lf-select b/.local/bin/lf-select
deleted file mode 100755
index 3b2a17a..0000000
--- a/.local/bin/lf-select
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Reads file names from stdin and selects them in lf.
-
-while read -r file; do
- [ -z "$file" ] && continue
- lf -remote "send select \"$file\""
- lf -remote "send toggle"
-done