mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
10 lines
184 B
Bash
Executable File
10 lines
184 B
Bash
Executable File
#!/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
|