2019-05-24 02:59:30 +00:00
|
|
|
# Luke's lf settings
|
|
|
|
|
|
|
|
# Basic vars
|
2020-04-10 12:00:42 +00:00
|
|
|
set shell bash
|
2019-05-24 02:59:30 +00:00
|
|
|
set shellopts '-eu'
|
|
|
|
set ifs "\n"
|
|
|
|
set scrolloff 10
|
2019-09-23 10:14:33 +00:00
|
|
|
set color256
|
2020-04-10 12:00:42 +00:00
|
|
|
set icons
|
|
|
|
set period 1
|
2019-05-24 02:59:30 +00:00
|
|
|
|
2020-04-10 20:39:32 +00:00
|
|
|
# Vars that depend on environmental variables
|
|
|
|
$lf -remote "send $id set previewer ${XDG_CONFIG_HOME:-$HOME/.config}/lf/scope"
|
|
|
|
|
2019-05-24 02:59:30 +00:00
|
|
|
# cmds/functions
|
|
|
|
cmd open ${{
|
|
|
|
case $(file --mime-type $f -b) in
|
2020-04-10 12:00:42 +00:00
|
|
|
image/vnd.djvu|application/pdf|application/octet-stream) setsid zathura $fx >/dev/null 2>&1 & ;;
|
2019-05-24 02:59:30 +00:00
|
|
|
text/*) $EDITOR $fx;;
|
|
|
|
image/x-xcf|image/svg+xml) setsid gimp $f >/dev/null 2>&1 & ;;
|
2020-04-10 12:00:42 +00:00
|
|
|
image/*) rotdir $f | grep -i "\.\(png\|jpg\|jpeg\|gif\|webp\)\(_large\)*$" | setsid sxiv -aio 2>/dev/null | lf-select & ;;
|
2020-05-27 19:54:16 +00:00
|
|
|
audio/*) mpv --audio-display=no $f ;;
|
2020-04-09 01:35:03 +00:00
|
|
|
video/*) setsid mpv $f -quiet >/dev/null 2>&1 & ;;
|
2019-05-24 02:59:30 +00:00
|
|
|
application/pdf) setsid zathura $fx >/dev/null 2>&1 & ;;
|
2020-05-28 11:10:48 +00:00
|
|
|
application/epub+zip) setsid zathura $fx >/dev/null 2>&1 & ;;
|
|
|
|
application/vnd.comicbook+zip) setsid zathura $fx >/dev/null 2>&1 & ;;
|
|
|
|
application/vnd.comicbook-rar) setsid zathura $fx >/dev/null 2>&1 & ;;
|
2019-05-24 02:59:30 +00:00
|
|
|
*) for f in $fx; do setsid $OPENER $f >/dev/null 2>&1 & done;;
|
|
|
|
esac
|
|
|
|
}}
|
|
|
|
|
2020-04-10 12:00:42 +00:00
|
|
|
cmd mkdir $mkdir -p "$(echo $* | tr ' ' '\ ')"
|
2019-05-24 02:59:30 +00:00
|
|
|
|
|
|
|
cmd delete ${{
|
2020-04-10 12:00:42 +00:00
|
|
|
clear; tput cup $(($(tput lines)/3)); tput bold
|
2019-05-24 02:59:30 +00:00
|
|
|
set -f
|
|
|
|
printf "%s\n\t" "$fx"
|
2019-09-23 10:14:33 +00:00
|
|
|
printf "delete?[y/N]"
|
2019-05-24 02:59:30 +00:00
|
|
|
read ans
|
|
|
|
[ $ans = "y" ] && rm -rf $fx
|
|
|
|
}}
|
|
|
|
|
|
|
|
cmd moveto ${{
|
2020-04-10 12:00:42 +00:00
|
|
|
clear; tput cup $(($(tput lines)/3)); tput bold
|
2019-05-24 02:59:30 +00:00
|
|
|
set -f
|
|
|
|
clear; echo "Move to where?"
|
2020-05-27 19:54:16 +00:00
|
|
|
dest="$(cut -d' ' -f2- ${XDG_CONFIG_HOME:-$HOME/.config}/directories | fzf | sed 's|~|$HOME|' )" &&
|
|
|
|
for x in $fx; do
|
|
|
|
eval mv -iv \"$x\" \"$dest\"
|
|
|
|
done &&
|
2019-05-24 02:59:30 +00:00
|
|
|
notify-send "🚚 File(s) moved." "File(s) moved to $dest."
|
|
|
|
}}
|
|
|
|
|
|
|
|
cmd copyto ${{
|
2020-04-10 12:00:42 +00:00
|
|
|
clear; tput cup $(($(tput lines)/3)); tput bold
|
2019-05-24 02:59:30 +00:00
|
|
|
set -f
|
|
|
|
clear; echo "Copy to where?"
|
2020-05-27 19:54:16 +00:00
|
|
|
dest="$(cut -d' ' -f2- ${XDG_CONFIG_HOME:-$HOME/.config}/directories | fzf | sed 's|~|$HOME|' )" &&
|
|
|
|
for x in $fx; do
|
|
|
|
eval cp -ivr \"$x\" \"$dest\"
|
|
|
|
done &&
|
2019-05-24 02:59:30 +00:00
|
|
|
notify-send "📋 File(s) copied." "File(s) copies to $dest."
|
|
|
|
}}
|
|
|
|
|
2019-12-09 00:20:49 +00:00
|
|
|
cmd bulkrename ${{
|
|
|
|
vidir
|
|
|
|
}}
|
|
|
|
|
2019-05-24 02:59:30 +00:00
|
|
|
# Bindings
|
2019-09-23 10:14:33 +00:00
|
|
|
map <c-f> $lf -remote "send $id select '$(fzf)'"
|
2020-04-08 23:10:00 +00:00
|
|
|
map J $lf -remote "send $id cd $(cut -d' ' -f2 ${XDG_CONFIG_HOME:-$HOME/.config}/directories | fzf)"
|
2019-05-24 02:59:30 +00:00
|
|
|
map gh
|
|
|
|
map g top
|
|
|
|
map D delete
|
|
|
|
map C copyto
|
|
|
|
map M moveto
|
2020-04-10 12:00:42 +00:00
|
|
|
map <c-n> push :mkdir<space>
|
2019-09-23 10:14:33 +00:00
|
|
|
map <c-r> reload
|
2019-05-24 02:59:30 +00:00
|
|
|
map <enter> shell
|
|
|
|
map x $$f
|
|
|
|
map X !$f
|
2020-04-10 12:00:42 +00:00
|
|
|
map o &mimeopen $f
|
|
|
|
map O $mimeopen --ask $f
|
|
|
|
|
|
|
|
map A rename # at the very end
|
|
|
|
map c push A<c-u> # new rename
|
|
|
|
map I push A<c-a> # at the very beginning
|
|
|
|
map i push A<a-b><a-b><a-f> # before extention
|
|
|
|
map a push A<a-b> # after extention
|
|
|
|
map b bulkrename
|
|
|
|
|
|
|
|
map <c-e> down
|
|
|
|
map <c-y> up
|
|
|
|
map V push :!nvim<space>
|