aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/pkgs/scripts/wrappers/llp
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-12-12 16:46:30 +0100
committerSoispha <soispha@vhack.eu>2023-12-12 16:46:30 +0100
commit3847781a0829b4a5824be764c0cd5925af47c33c (patch)
tree12eb5ba50979745e408d8b51b28d022326b82c80 /hm/soispha/pkgs/scripts/wrappers/llp
parentfix(hm/wms/river/init): Don't use error handling for setting variables (diff)
downloadnixos-config-3847781a0829b4a5824be764c0cd5925af47c33c.zip
chore(hm/pkgs/scr/llp): Delete llp, as it's not necessary on Wayland
Diffstat (limited to 'hm/soispha/pkgs/scripts/wrappers/llp')
-rwxr-xr-xhm/soispha/pkgs/scripts/wrappers/llp19
1 files changed, 0 insertions, 19 deletions
diff --git a/hm/soispha/pkgs/scripts/wrappers/llp b/hm/soispha/pkgs/scripts/wrappers/llp
deleted file mode 100755
index 2a21450c..00000000
--- a/hm/soispha/pkgs/scripts/wrappers/llp
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/bash
-
-export LLP=1
-cleanup() {
- exec 3>&-
- rm "$FIFO_UEBERZUG"
-}
-
-if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
- lf "$@"
-else
- [ ! -d "$HOME/.cache/lf" ] && mkdir --parents "$HOME/.cache/lf"
- export FIFO_UEBERZUG="$HOME/.cache/lf/ueberzug-$$"
- mkfifo "$FIFO_UEBERZUG"
- ueberzug layer -s <"$FIFO_UEBERZUG" -p json &
- exec 3>"$FIFO_UEBERZUG"
- trap cleanup EXIT
- lf "$@" 3>&-
-fi