aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2022-08-25 21:38:06 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2022-08-25 21:38:06 +0300
commite8362b9409ed9922a28a5f9f4b982099c8703d5c (patch)
tree800cd24437fa5d8608237ccfcfb7b3b5a1928537
parentd5991a7353595af084f0782735c0eddf396e21c6 (diff)
downloadswayrice-e8362b9409ed9922a28a5f9f4b982099c8703d5c.tar.gz
swayrice-e8362b9409ed9922a28a5f9f4b982099c8703d5c.zip
Image previews in lf with sixel
-rwxr-xr-xartix.sh2
-rw-r--r--dotfiles/.config/lf/lfrc2
-rwxr-xr-xdotfiles/.local/bin/scope19
3 files changed, 16 insertions, 7 deletions
diff --git a/artix.sh b/artix.sh
index 353ea1c..baeee82 100755
--- a/artix.sh
+++ b/artix.sh
@@ -166,7 +166,7 @@ yay -S --noconfirm \
ncpamixer \
mimeo \
xdg-utils-mimeo \
- lf \
+ lf-sixel-git \
dragon-drag-and-drop \
swaylock-effects \
youtube-viewer \
diff --git a/dotfiles/.config/lf/lfrc b/dotfiles/.config/lf/lfrc
index 55c417d..734febc 100644
--- a/dotfiles/.config/lf/lfrc
+++ b/dotfiles/.config/lf/lfrc
@@ -104,7 +104,7 @@ map t :dragon
map T :dragon_drop
map W $setsid $TERMINAL > /dev/null 2>&1 & # open new terminal window
map Y :yank-path
-map L $LESSOPEN='| ~/.local/bin/scope %s' less -R $f # open file preview in pager
+map L $LESSOPEN='| ~/.local/bin/scope %s' less -r $f # open file preview in pager
# Mouse bindings
map <m-1> open
diff --git a/dotfiles/.local/bin/scope b/dotfiles/.local/bin/scope
index b5fccda..de380ee 100755
--- a/dotfiles/.local/bin/scope
+++ b/dotfiles/.local/bin/scope
@@ -1,6 +1,6 @@
#!/bin/bash
-set -C -f -u
+set -C -f
#IFS=$'\n'
IFS="$(printf '%b_' '\n')"; IFS="${IFS%_}"
@@ -17,8 +17,11 @@ IFS="$(printf '%b_' '\n')"; IFS="${IFS%_}"
# 2 | plain text | Display the plain content of the file
# Script arguments
-FILE_PATH="${1}" # Full path of the highlighted file
-#HEIGHT="${2}"
+FILE_PATH="$1" # Full path of the highlighted file
+w="$2"
+h="$3"
+# x=$4
+# y=$5
#FILE_EXTENSION="${FILE_PATH##*.}"
#FILE_EXTENSION_LOWER=$(echo ${FILE_EXTENSION} | tr '[:upper:]' '[:lower:]')
@@ -28,6 +31,13 @@ HIGHLIGHT_SIZE_MAX=262143 # 256KiB
HIGHLIGHT_TABWIDTH=8
HIGHLIGHT_STYLE='pablo'
+handle_img() {
+ if [ -n "$w" -a -n "$h" ]; then
+ chafa --animate off -s "${w}x${h}" $FILE_PATH | sed 's/#/\n#/g'
+ else
+ exiftool "${FILE_PATH}"
+ fi
+}
handle_mime() {
local mimetype="${1}"
@@ -50,7 +60,7 @@ handle_mime() {
application/x-xz) tar -Jtf "${FILE_PATH}" ;;
application/x-rar) unrar lb -- "${FILE_PATH}" ;;
video/* | audio/*|application/octet-stream) mediainfo "${FILE_PATH}" | awk -F':' '{ print $2 }' || exit 1;;
- image/*) exiftool "${FILE_PATH}";;
+ image/*) handle_img;;
*/pdf) pdftotext -l 10 -nopgbrk -q -- "${FILE_PATH}" - ;;
*opendocument*) odt2txt "${FILE_PATH}" ;;
*) file -b "${FILE_PATH}" ;;
@@ -59,4 +69,3 @@ handle_mime() {
MIMETYPE="$( file --dereference --brief --mime-type -- "${FILE_PATH}" )"
handle_mime "${MIMETYPE}"
-exit 1