From 2942243cdecee349f5e4f7bbfc6ca960429a0e03 Mon Sep 17 00:00:00 2001 From: Daniele Fucini Date: Sat, 20 Apr 2024 11:49:43 +0200 Subject: [PATCH] Add image and vid previews in lf --- .bashrc | 2 ++ .config/lf/lf_kitty_clean | 3 +++ .config/lf/lf_kitty_preview | 21 +++++++++++++++++++++ .config/lf/lfrc | 6 ++++++ 4 files changed, 32 insertions(+) create mode 100755 .config/lf/lf_kitty_clean create mode 100755 .config/lf/lf_kitty_preview diff --git a/.bashrc b/.bashrc index 60ac6d5..176b933 100644 --- a/.bashrc +++ b/.bashrc @@ -20,6 +20,8 @@ fi export EDITOR=vim export SUDO_EDITOR=rvim +export PATH="/home/fuxino/.local/bin:$PATH" + eval "$(starship init bash)" exec fish diff --git a/.config/lf/lf_kitty_clean b/.config/lf/lf_kitty_clean new file mode 100755 index 0000000..16a2e66 --- /dev/null +++ b/.config/lf/lf_kitty_clean @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +kitty +kitten icat --clear --stdin no --silent --transfer-mode file < /dev/null > /dev/tty diff --git a/.config/lf/lf_kitty_preview b/.config/lf/lf_kitty_preview new file mode 100755 index 0000000..eaa6ce5 --- /dev/null +++ b/.config/lf/lf_kitty_preview @@ -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" diff --git a/.config/lf/lfrc b/.config/lf/lfrc index b9908b1..0fcc317 100644 --- a/.config/lf/lfrc +++ b/.config/lf/lfrc @@ -26,6 +26,10 @@ set cursorpreviewfmt "\033[7;2m" # Use icons set icons +# Preview files +set previewer ~/.config/lf/lf_kitty_preview +set cleaner ~/.config/lf/lf_kitty_clean + # define a custom 'open' command # 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 @@ -139,6 +143,8 @@ map gv cd ~/Videos map gm cd ~/Music map gp cd ~/Pictures map ga cd /run/user/1000/gvfs +map gw cd ~/Downloads +map go cd ~/Documents # archives map ax extract