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.
24 lines
489 B
24 lines
489 B
#!/usr/bin/env bash
|
|
|
|
# by cirala, checkout github.com/cirala/vifmimg
|
|
|
|
export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}"
|
|
|
|
if [ ! -f "/usr/bin/ueberzug" ]; then
|
|
vifm
|
|
exit
|
|
fi
|
|
|
|
function cleanup {
|
|
rm "$FIFO_UEBERZUG" 2>/dev/null
|
|
pkill -P $$ 2>/dev/null
|
|
}
|
|
pkill -P $$ 2>/dev/null
|
|
rm "$FIFO_UEBERZUG" 2>/dev/null
|
|
mkfifo "$FIFO_UEBERZUG" >/dev/null
|
|
trap cleanup EXIT 2>/dev/null
|
|
tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser bash 2>&1 >/dev/null &
|
|
|
|
vifm "$@"
|
|
cleanup
|