vifm default file manager w/ überzug

This commit is contained in:
Luke Smith
2019-03-09 12:17:15 -05:00
parent 84bf3956f0
commit cca884b02e
5 changed files with 82 additions and 19 deletions

15
.scripts/tools/vu Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env sh
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