aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/common/.local/bin/lfub
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-26 17:43:13 -0600
committerCraig Jennings <c@cjennings.net>2026-01-26 17:43:13 -0600
commitb359bef173ca3356ae4cb99874be48bdc6c8f080 (patch)
tree77e893b02f5451e26ff91d0dd0373a14d0e91cb3 /dotfiles/common/.local/bin/lfub
parent7322e6c6f19393a5bd91b669b3214cc292a10a39 (diff)
downloadarchsetup-b359bef173ca3356ae4cb99874be48bdc6c8f080.tar.gz
archsetup-b359bef173ca3356ae4cb99874be48bdc6c8f080.zip
chore(scripts): remove lf scripts, update yt-dlp option
- Remove lfrun and lfub (lf file manager not installed, using ranger) - Update ytp script: --add-metadata -> --embed-metadata Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'dotfiles/common/.local/bin/lfub')
-rwxr-xr-xdotfiles/common/.local/bin/lfub24
1 files changed, 0 insertions, 24 deletions
diff --git a/dotfiles/common/.local/bin/lfub b/dotfiles/common/.local/bin/lfub
deleted file mode 100755
index 9012f50..0000000
--- a/dotfiles/common/.local/bin/lfub
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# This is a wrapper script for lb that allows it to create image previews with
-# ueberzug. This works in concert with the lf configuration file and the
-# lf-cleaner script.
-
-set -e
-
-cleanup() {
- exec 3>&-
- rm "$FIFO_UEBERZUG"
-}
-
-if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
- lf "$@"
-else
- [ ! -d "$HOME/.cache/lf" ] && mkdir -p "$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 HUP INT QUIT TERM PWR EXIT
- lf "$@" 3>&-
-fi