summaryrefslogtreecommitdiff
path: root/ar/.local/bin/unewsboat
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-28 01:37:44 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-28 01:37:44 +0900
commit41c1df54d4bbe3e07c16ed0db9821622cc13f5e4 (patch)
treedb20c2cfc9d01c70f999785fafb0852c0d7a7635 /ar/.local/bin/unewsboat
parentbdb59276699429f4044f6abf522b610f1f6b95e7 (diff)
modified lf/cleaner, modified lf/scope, modified bin/fzffiles, modified bin/lfub, deleted bin/unewsboat
Diffstat (limited to 'ar/.local/bin/unewsboat')
-rwxr-xr-xar/.local/bin/unewsboat16
1 files changed, 0 insertions, 16 deletions
diff --git a/ar/.local/bin/unewsboat b/ar/.local/bin/unewsboat
deleted file mode 100755
index 547fae2..0000000
--- a/ar/.local/bin/unewsboat
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-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 &
-
-newsboat "$@"
-cleanup