diff options
Diffstat (limited to 'dotfiles/.local/bin')
-rwxr-xr-x | dotfiles/.local/bin/scope | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dotfiles/.local/bin/scope b/dotfiles/.local/bin/scope index 46b01a9..f094601 100755 --- a/dotfiles/.local/bin/scope +++ b/dotfiles/.local/bin/scope @@ -33,7 +33,12 @@ HIGHLIGHT_STYLE='pablo' handle_img() { if [ -n "$w" -a -n "$h" ]; then - chafa --polite on --animate off -s "${w}x${h}" $FILE_PATH | sed 's/#/\n#/g' + # A little hack to force sixel on ayosec's Alacritty fork + if [ "$TERM" = alacritty ]; then + chafa --polite on --animate off -f sixel -s "${w}x${h}" $FILE_PATH | sed 's/#/\n#/g' + else + chafa --polite on --animate off -s "${w}x${h}" $FILE_PATH | sed 's/#/\n#/g' + fi else exiftool "${FILE_PATH}" fi |