Add image and vid previews in lf

This commit is contained in:
daniele 2024-04-20 11:49:43 +02:00
parent 0f5c47bcf9
commit 2942243cde
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
4 changed files with 32 additions and 0 deletions

View File

@ -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
View 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
View 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"

View 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