aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/vifm_launch
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-09-09 00:54:15 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-09-09 00:54:15 +0300
commit871833b7b7f5d2ebf228aa63cb0f08d70a3e5076 (patch)
tree9f575f3f4eb9da2754276037be825db962b543ed /dotfiles/.local/bin/vifm_launch
parentdca7f07af96e19d6603b46a7ead876cf96da32c7 (diff)
parentf4282e5a6a437acdc76b16049cb35eb14256913a (diff)
downloadswayrice-871833b7b7f5d2ebf228aa63cb0f08d70a3e5076.tar.gz
swayrice-871833b7b7f5d2ebf228aa63cb0f08d70a3e5076.zip
Merge branch 'master' of git.yaroslavps.com:public/configs/swayrice
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