Marty Oehme
4a203cf657
Fixed invocations of vifm only passing through the first commandline option, now passes through everything correctly. Also fixed silencing of the stderr, stdout redirection.
15 lines
385 B
Bash
Executable file
15 lines
385 B
Bash
Executable file
#!/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 >/dev/null 2>&1 &
|
|
|
|
vifm "$@"
|
|
cleanup
|