Add image and vid previews in lf
This commit is contained in:
parent
0f5c47bcf9
commit
2942243cde
2
.bashrc
2
.bashrc
@ -20,6 +20,8 @@ fi
|
|||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
export SUDO_EDITOR=rvim
|
export SUDO_EDITOR=rvim
|
||||||
|
|
||||||
|
export PATH="/home/fuxino/.local/bin:$PATH"
|
||||||
|
|
||||||
eval "$(starship init bash)"
|
eval "$(starship init bash)"
|
||||||
|
|
||||||
exec fish
|
exec fish
|
||||||
|
3
.config/lf/lf_kitty_clean
Executable file
3
.config/lf/lf_kitty_clean
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
kitty +kitten icat --clear --stdin no --silent --transfer-mode file < /dev/null > /dev/tty
|
21
.config/lf/lf_kitty_preview
Executable file
21
.config/lf/lf_kitty_preview
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
file=$1
|
||||||
|
w=$2
|
||||||
|
h=$3
|
||||||
|
x=$4
|
||||||
|
y=$5
|
||||||
|
|
||||||
|
filetype="$( file -Lb --mime-type "$file")"
|
||||||
|
|
||||||
|
if [[ "$filetype" =~ ^image ]]; then
|
||||||
|
kitty +kitten icat --silent --stdin no --transfer-mode file --place "${w}x${h}@${x}x${y}" "$file" < /dev/null > /dev/tty
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$filetype" =~ ^video ]]; then
|
||||||
|
kitty +kitten icat --silent --stdin no --transfer-mode file --place "${w}x${h}@${x}x${y}" "$(vidthumb "$file")" < /dev/null > /dev/tty
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
pistol "$file"
|
@ -26,6 +26,10 @@ set cursorpreviewfmt "\033[7;2m"
|
|||||||
# Use icons
|
# Use icons
|
||||||
set icons
|
set icons
|
||||||
|
|
||||||
|
# Preview files
|
||||||
|
set previewer ~/.config/lf/lf_kitty_preview
|
||||||
|
set cleaner ~/.config/lf/lf_kitty_clean
|
||||||
|
|
||||||
# define a custom 'open' command
|
# define a custom 'open' command
|
||||||
# This command is called when current file is not a directory. You may want to
|
# This command is called when current file is not a directory. You may want to
|
||||||
# use either file extensions and/or mime types here. Below uses an editor for
|
# use either file extensions and/or mime types here. Below uses an editor for
|
||||||
@ -139,6 +143,8 @@ map gv cd ~/Videos
|
|||||||
map gm cd ~/Music
|
map gm cd ~/Music
|
||||||
map gp cd ~/Pictures
|
map gp cd ~/Pictures
|
||||||
map ga cd /run/user/1000/gvfs
|
map ga cd /run/user/1000/gvfs
|
||||||
|
map gw cd ~/Downloads
|
||||||
|
map go cd ~/Documents
|
||||||
|
|
||||||
# archives
|
# archives
|
||||||
map ax extract
|
map ax extract
|
||||||
|
Loading…
x
Reference in New Issue
Block a user