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

12 lines
267 B
Bash
Executable File

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