mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
490 B
22 lines
490 B
1 year ago
|
#!/bin/sh
|
||
5 years ago
|
|
||
1 year ago
|
if [ -z "$(command -v vifm)" ]; then
|
||
|
printf "vifm isn't installed on your system!\n"
|
||
|
exit 1
|
||
|
elif [ -z "$(command -v ueberzug)" ]; then
|
||
|
exec vifm "$@"
|
||
|
else
|
||
|
cleanup() {
|
||
|
exec 3>&-
|
||
|
rm "$FIFO_UEBERZUG"
|
||
|
}
|
||
|
[ ! -d "$HOME/.cache/vifm" ] && mkdir -p "$HOME/.cache/vifm"
|
||
|
export FIFO_UEBERZUG="$HOME/.cache/vifm/ueberzug-${$}"
|
||
|
mkfifo "$FIFO_UEBERZUG"
|
||
|
ueberzug layer -s <"$FIFO_UEBERZUG" -p json &
|
||
|
exec 3>"$FIFO_UEBERZUG"
|
||
|
trap cleanup EXIT
|
||
|
vifm "$@" 3>&-
|
||
|
vifmimg clear
|
||
5 years ago
|
fi
|