1
0
Fork 0
dotfiles/.config/lf/lfrc

206 lines
6.4 KiB
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
# Basic vars
set ratios 1:2:4
2022-07-04 21:36:33 +02:00
set shellopts '-eu'
set ifs "\n"
2022-10-24 18:10:24 +02:00
set findlen 1
2022-07-04 21:36:33 +02:00
set scrolloff 10
set icons
2022-08-03 14:39:17 +02:00
set wrapscroll
2022-07-04 21:36:33 +02:00
set period 1
set previewer ~/.config/lf/preview
2022-07-06 13:21:33 +02:00
set cleaner ~/.config/lf/clean
2022-08-03 14:39:17 +02:00
set promptfmt "\033[34;1m%u\033[36m@\033[34m%h \033[35m[\033[0;1m%d\033[33m%f\033[35m]\033[0m"
2022-07-04 21:36:33 +02:00
cmd open ${{
case "$(xdg-mime query filetype "$f")" in
*/x-bzip-compressed-tar|*/x-compressed-tar|*/x-7z-compressed|*/vnd.rar|*/x-tar|*/zip|*/x-java-archive|*/x-xz|*/x-xz-compressed-tar|*/x-cd-image)
mntdir="$f-archivemount"
[ ! -d "$mntdir" ] && {
2022-08-08 17:42:12 +02:00
mkdir "$mntdir"
archivemount "$f" "$mntdir"
echo "$mntdir" >> "/tmp/__lf_archivemount_$id"
}
lf -remote "send $id cd \"$mntdir\""
lf -remote "send $id reload"
;;
audio/*) mpv --audio-display=no $f ;;
video/*) setsid -f mpv $f -quiet >/dev/null 2>&1 ;;
image/x-xcf) setsid -f gimp $f >/dev/null 2>&1 ;;
image/*) rotdir $f | grep -i "\.\(png\|jpg\|jpeg\|gif\|webp\|tif\|ico\)\(_large\)*$" |
setsid -f sxiv -aio 2>/dev/null | while read -r file; do
[ -z "$file" ] && continue
lf -remote "send select \"$file\""
lf -remote "send toggle"
done &
;;
*/vnd.djvu|*/pdf|*/postscript|*/epub*) setsid -f zathura $fx >/dev/null 2>&1 ;;
officedocument.wordprocessingml.document|application/vnd.oasis.opendocument.text) setsid -f lowriter $fx >/dev/null 2>&1 ;;
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet) localc $fx ;;
application/vnd.openxmlformats-officedocument.wordprocessingml.document|application/vnd.oasis.opendocument.text) setsid -f lowriter $fx >/dev/null 2>&1 ;;
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet|application/octet-stream|application/vnd.oasis.opendocument.spreadsheet|application/vnd.oasis.opendocument.spreadsheet-template) setsid -f localc $fx >/dev/null 2>&1 ;;
application/vnd.openxmlformats-officedocument.presentationml.presentation|application/vnd.oasis.opendocument.presentation-template|application/vnd.oasis.opendocument.presentation|application/vnd.ms-powerpoint) setsid -f loimpress $fx >/dev/null 2>&1 ;;
application/vnd.oasis.opendocument.graphics|application/vnd.oasis.opendocument.graphics-template) setsid -f lodraw $fx >/dev/null 2>&1 ;;
application/vnd.oasis.opendocument.formula) setsid -f lomath $fx >/dev/null 2>&1 ;;
application/vnd.oasis.opendocument.database) setsid -f lobase $fx >/dev/null 2>&1 ;;
2022-08-08 17:42:12 +02:00
esac
case $(file --mime-type "$(readlink -f $f)" -b) in
2022-08-23 21:00:49 +02:00
text/csv) sc-im $fx ;;
2022-08-02 22:35:20 +02:00
text/*|application/json|inode/x-empty) $EDITOR $fx;;
application/pgp-encrypted) $EDITOR $fx ;;
# *) for f in $fx; do setsid -f $OPENER $f >/dev/null 2>&1; done;;
2022-07-07 16:23:55 +02:00
esac
2022-07-04 21:36:33 +02:00
}}
cmd mkdir $mkdir -p "$(echo $* | tr ' ' '\ ')"
cmd extract ${{
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
printf "%s\n\t" "$fx"
printf "extract?[y/N]"
read ans
[ $ans = "y" ] && aunpack $fx
}}
cmd delete ${{
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
printf "%s\n\t" "$fx"
printf "delete?[y/N]"
read ans
[ $ans = "y" ] && rm -rf -- $fx
}}
2022-07-07 16:23:55 +02:00
cmd trash ${{
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
printf "%s\n\t" "$fx"
printf "trash?[y/N]"
read ans
if [ $ans = "y" ]; then
for f in $fx; do
echo $f
trash-put $f
done
fi
2022-07-07 16:23:55 +02:00
}}
2022-07-04 21:36:33 +02:00
cmd rsyncto ${{
2022-08-01 15:39:53 +02:00
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
clear; echo "rsync to where?"
read dest
for x in $fx; do
2022-09-15 20:27:44 +02:00
eval rsync -aAXHv \"$x\" \"$dest\"
2022-08-01 15:39:53 +02:00
done &&
2022-07-04 21:36:33 +02:00
notify-send "File(s) rsynced." "File(s) copies to $dest."
}}
2022-07-06 16:41:11 +02:00
# y (select for copy) and P to paste soft-link
# d (select for cut) and P to paste hard-link
cmd link %{{
set -- $(cat ~/.local/share/lf/files)
mode="$1"
shift
if [ "$#" -lt 1 ]; then
lf -remote "send $id echo no files to link"
exit 0
fi
case "$mode" in
# symbolically copy mode is indicating a soft link
copy) ln -sr -t . -- "$@";;
# while a move mode is indicating a hard link
move) ln -t . -- "$@";;
esac
rm ~/.local/share/lf/files
lf -remote "send clear"
}}
2022-07-04 21:36:33 +02:00
cmd setbg "$1"
cmd bulkrename $vidir
2022-07-07 16:23:55 +02:00
cmd on-cd &{{
DIR=$(echo $PWD | sed "s|$HOME|~|")
2022-08-07 12:54:03 +02:00
printf "\033]0; $DIR\007" > /dev/tty
2022-07-07 16:23:55 +02:00
}}
on-cd
cmd on-quit ${{
DIR=$(echo $PWD | sed "s|$HOME|~|")
printf "\033]0; $DIR\007" > /dev/tty
}}
2022-07-07 16:23:55 +02:00
2022-09-15 20:27:44 +02:00
cmd paste &{{
set -- $(cat ~/.local/share/lf/files)
mode="$1"
shift
case "$mode" in
copy)
rsync -av --ignore-existing --progress -- "$@" . |
stdbuf -i0 -o0 -e0 tr '\r' '\n' |
while IFS= read -r line; do
lf -remote "send $id echo $line"
done
;;
move) mv -n -- "$@" .;;
esac
rm ~/.local/share/lf/files
lf -remote "send clear"
}}
cmd dupe &{{
for file in $fx; do
find "$PWD" "$file" | grep -oP '(?<=.\.~)\d+(?=~$)' | sort -n | tail -1 | (
ext=$(($(cat /dev/stdin)+1))
filedest="$(echo "$file" | sed 's/.~[[:digit:]]*~$//').~$ext~"
2022-12-20 18:13:40 +01:00
cp -r "$file" "$filedest"
)
done
}}
2022-08-04 15:44:33 +02:00
cmd share $curl -F"file=@$fx" https://0x0.snaile.de | xclip -r -selection c
2022-07-07 16:23:55 +02:00
2022-07-04 21:36:33 +02:00
# Bindings
2022-10-20 09:47:36 +02:00
map <c-c>a $lf -remote "send $id select '$(fzf)'"
map <c-c>t $lf -remote "send $id select '$(cat ${XDG_DATA_HOME:-$HOME/.local/share}/lf/tags | sed 's/:\*$//' | fzf)'"
map <c-c>f $lf -remote "send $id select '$(cat ${XDG_DATA_HOME:-$HOME/.local/share}/lf/shortcut-files | fzf)'"
map <c-c>d $lf -remote "send $id cd '$(cat ${XDG_DATA_HOME:-$HOME/.local/share}/lf/shortcut-dirs | fzf)'"
2022-08-03 00:29:41 +02:00
map J $dir=$(sed -e 's/\s*#.*//' -e '/^$/d' -e 's/^\S*\s*//' ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | fzf) && lf -remote "send $id cd $(eval echo $dir)"
2022-07-07 16:23:55 +02:00
map D trash
map <c-d> delete
map T $trash-restore $PWD
2022-10-27 09:36:14 +02:00
map <c-e> extract
2022-07-04 21:36:33 +02:00
map R rsyncto
2022-07-06 16:41:11 +02:00
map P link
map S share
2022-08-03 14:39:17 +02:00
map <c-g> $lazygit
2022-10-20 09:47:36 +02:00
map <c-v> push :!$EDITOR<space>
2022-07-04 21:36:33 +02:00
map <c-n> push :mkdir<space>
2022-10-20 09:47:36 +02:00
map <c-t> push :&touch<space>
2022-07-04 21:36:33 +02:00
map <c-r> reload
map <c-s> set hidden!
map <enter> shell
map x $$f
map X !$f
map o &mimeopen $f
2022-12-01 17:59:01 +01:00
map O $mimeopen -a $f
2022-07-04 21:36:33 +02:00
map A rename # at the very end
2022-08-03 14:39:17 +02:00
map a push A<c-a> # at the very beginning
map I push A<a-b> # after extension
map i push A<a-b><a-b><a-f> # before extension
2022-07-04 21:36:33 +02:00
map c push A<c-u> # new rename
map B bulkrename
map b dupe
2022-09-17 02:39:38 +02:00
map u :clear; unselect
map n &echo $f | xclip -r -selection c
2022-10-28 12:16:11 +02:00
map <esc> quit
2022-09-17 02:39:38 +02:00
map N
2022-11-07 10:21:29 +01:00
map g/ cd "/"
2023-02-04 22:15:57 +01:00
map W &setsid $TERMINAL -e $SHELL -c "lf; $SHELL"
2022-07-04 21:36:33 +02:00
2022-08-09 10:56:16 +02:00
# Kitty Specific
2023-02-06 14:18:00 +01:00
map W &setsid $TERMINAL $SHELL -c "lf; exec $SHELL"
2022-10-21 17:52:11 +02:00
# Load bookmark shortcuts
source "~/.config/lf/shortcutrc"