vifm materials readded

This commit is contained in:
Luke Smith
2019-11-26 16:05:29 -05:00
parent 1f4fa9e0e9
commit 1b290cfa7a
4 changed files with 139 additions and 0 deletions

18
.local/bin/vu Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env sh
# This is a wrapper for vifm to allow ueberzug images.
export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}"
cleanup() {
rm "$FIFO_UEBERZUG" 2>/dev/null
pkill -P $$ 2>/dev/null
}
rm "$FIFO_UEBERZUG" 2>/dev/null
mkfifo "$FIFO_UEBERZUG"
trap cleanup EXIT
tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser bash &
vifm
cleanup