aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/vifm_launch
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-08-20 14:06:41 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-08-20 14:06:41 +0300
commitf4282e5a6a437acdc76b16049cb35eb14256913a (patch)
tree93e72f2b1f7ea669ae3f0200971b3d35564fff7a /dotfiles/.local/bin/vifm_launch
parentbddebc4144b1262d40d6fd26d5e98aeb51b0202f (diff)
downloadswayrice-f4282e5a6a437acdc76b16049cb35eb14256913a.tar.gz
swayrice-f4282e5a6a437acdc76b16049cb35eb14256913a.zip
foot: sound alert
Retarded ffplay started drawing a gui window after an update. Added -nodisp flag.
Diffstat (limited to 'dotfiles/.local/bin/vifm_launch')
-rwxr-xr-xdotfiles/.local/bin/vifm_launch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dotfiles/.local/bin/vifm_launch b/dotfiles/.local/bin/vifm_launch
deleted file mode 100755
index 07b6473..0000000
--- a/dotfiles/.local/bin/vifm_launch
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}"
-
-function 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