187 lines
5.7 KiB
Plaintext
187 lines
5.7 KiB
Plaintext
# Basic vars
|
|
set ratios 1:2:4
|
|
set shellopts '-eu'
|
|
set ifs "\n"
|
|
set findlen 2
|
|
set scrolloff 10
|
|
set icons
|
|
set wrapscroll
|
|
set period 1
|
|
set previewer ~/.config/lf/preview
|
|
set cleaner ~/.config/lf/clean
|
|
set promptfmt "\033[34;1m%u\033[36m@\033[34m%h \033[35m[\033[0;1m%d\033[33m%f\033[35m]\033[0m"
|
|
|
|
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" ] && {
|
|
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 ;;
|
|
esac
|
|
case $(file --mime-type "$(readlink -f $f)" -b) in
|
|
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;;
|
|
esac
|
|
}}
|
|
|
|
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
|
|
}}
|
|
|
|
cmd trash ${{
|
|
clear; tput cup $(($(tput lines)/3)); tput bold
|
|
set -f
|
|
printf "%s\n\t" "$fx"
|
|
printf "trash?[y/N]"
|
|
read ans
|
|
[ $ans = "y" ] && trash-put $fx
|
|
}}
|
|
|
|
cmd rsyncto ${{
|
|
clear; tput cup $(($(tput lines)/3)); tput bold
|
|
set -f
|
|
clear; echo "rsync to where?"
|
|
read dest
|
|
for x in $fx; do
|
|
eval rsync -aAXHv \"$x\" \"$dest\"
|
|
done &&
|
|
notify-send "File(s) rsynced." "File(s) copies to $dest."
|
|
}}
|
|
|
|
# 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"
|
|
}}
|
|
|
|
cmd setbg "$1"
|
|
cmd bulkrename $vidir
|
|
|
|
cmd git_branch ${{
|
|
git branch | fzf | xargs git checkout
|
|
pwd_shell=$(pwd)
|
|
lf -remote "send $id updir"
|
|
lf -remote "send $id cd \"$pwd_shell\""
|
|
}}
|
|
|
|
|
|
|
|
cmd on-cd &{{
|
|
DIR=$(echo $PWD | sed "s|$HOME|~|")
|
|
printf "\033]0; $DIR\007" > /dev/tty
|
|
}}
|
|
on-cd
|
|
|
|
cmd on-quit ${{
|
|
DIR=$(echo $PWD | sed "s|$HOME|~|")
|
|
printf "\033]0; $DIR\007" > /dev/tty
|
|
}}
|
|
|
|
# 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 share $curl -F"file=@$fx" https://0x0.snaile.de | xclip -r -selection c
|
|
|
|
# Bindings
|
|
map <c-f> $lf -remote "send $id select '$(fzf)'"
|
|
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)"
|
|
map D trash
|
|
map <c-d> delete
|
|
map E extract
|
|
map R rsyncto
|
|
map P link
|
|
map S share
|
|
map <c-g> $lazygit
|
|
map V push :!$EDITOR<space>
|
|
map <c-n> push :mkdir<space>
|
|
map <c-r> reload
|
|
map <c-s> set hidden!
|
|
map <enter> shell
|
|
map x $$f
|
|
map X !$f
|
|
map o &mimeopen $f
|
|
map O $mimeopen --ask $f
|
|
map A rename # at the very end
|
|
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
|
|
map c push A<c-u> # new rename
|
|
map B bulkrename
|
|
|
|
# Kitty Specific
|
|
map W $kitty @ launch --cwd $PWD --no-response lf
|
|
|
|
# source directory shortcuts
|
|
source "~/.config/lf/shortcutrc"
|