This commit is contained in:
2025-07-02 00:06:47 -07:00
commit f1b2f81de4
99 changed files with 5755 additions and 0 deletions

18
lf/lfrc Normal file
View File

@ -0,0 +1,18 @@
set ignorecase true
set info size:time
# bindings
map . set hidden!
map <delete> delete
map S shell
map s calcdirsize
map <enter> $bash
map b $btop
# run shell scripts by pressing l on them
map l ${{
case $(file --mime-type -b "$f") in
text/x-shellscript) sh "$f" ;;
*) lf -remote "send $id open" ;;
esac
}}