Flatten script file hierarchy

Scripts would not be added to path otherwise
This commit is contained in:
Marty Oehme 2020-01-04 12:19:39 +01:00
parent f367bc5819
commit e791340b19
6 changed files with 0 additions and 0 deletions

15
scripts/.local/bin/vifmrun Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}"
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 $1
cleanup