feat: add lf snippet for bashrc

master
NunoSempere 1 year ago
parent cca4385b18
commit 258073fb21

@ -0,0 +1,16 @@
## Exit on working directory for lf
lf () {
tmp="$(mktemp)"
_lf -last-dir-path="$tmp" "$@" --command "set hidden"
if [ -f "$tmp" ]; then
dir="$(cat "$tmp")"
rm -f "$tmp"
if [ -d "$dir" ]; then
if [ "$dir" != "$(pwd)" ]; then
cd "$dir"
fi
fi
fi
}

@ -6,4 +6,9 @@ cd workspace
wget https://github.com/gokcehan/lf/releases/download/r28/lf-linux-amd64.tar.gz -O lf.tar.gz
tar -xzf lf.tar.gz
sudo mv lf /usr/bin/_lf
mkdir -p ~/.config
mkdir -p ~/.config/lf
cd ~/.config/lf
wget https://git.nunosempere.com/open.source/server-init/raw/branch/master/lfrc -O lfrc
cd ~
touch .bashrc
e

Loading…
Cancel
Save