summaryrefslogtreecommitdiff
path: root/dotfiles/common/.local/bin/lfrun
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
commit4c44d1d196c64fa2ec3455c2869c67b25898f40a (patch)
treedad12a4f20aa9b3946c635f38d4a5fbfa5ec841b /dotfiles/common/.local/bin/lfrun
parent8ff733f60dbdaac4a665311e87fe6a24b27c4455 (diff)
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/lfrun')
-rwxr-xr-xdotfiles/common/.local/bin/lfrun19
1 files changed, 0 insertions, 19 deletions
diff --git a/dotfiles/common/.local/bin/lfrun b/dotfiles/common/.local/bin/lfrun
deleted file mode 100755
index 5bb0ba3..0000000
--- a/dotfiles/common/.local/bin/lfrun
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-set -e
-
-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