1
0
Fork 0
dotfiles/.local/bin/lf-sixel

12 lines
267 B
Text
Raw Normal View History

#!/bin/sh
set -e
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
2024-02-01 00:33:16 +01:00
# shellcheck disable=2068
command lf $@
else
[ ! -d "$HOME/.cache/lf" ] && mkdir --parents "$HOME/.cache/lf"
2024-02-01 00:33:16 +01:00
# shellcheck disable=2016,2068
command lf -command 'set_previewer sixel' $@ 3>&-
fi