summaryrefslogtreecommitdiff
path: root/scripts/.local/bin/vifmrun
blob: 00f618bb6dce6dd876790493bb609625f811d66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}"

# this should work with both local and global ueberzug install
if [ ! -x $(command -v ueberzug >/dev/null 2>&1) ]; 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