add scripts, mostly taken from LARBS

This commit is contained in:
Tibeuleu
2024-03-06 11:35:50 +01:00
parent daa93aadf5
commit 8160de0f74
43 changed files with 939 additions and 22 deletions

9
.local/bin/lf-select Executable file
View File

@@ -0,0 +1,9 @@
#!/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