diff --git a/.local/bin/lfselect b/.local/bin/lfselect deleted file mode 100755 index 3b2a17a..0000000 --- a/.local/bin/lfselect +++ /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