Skip to content

Instantly share code, notes, and snippets.

View franklincm's full-sized avatar
🐵

Chase Franklin franklincm

🐵
  • Renraku Computer Systems
View GitHub Profile
@franklincm
franklincm / lfrc
Last active October 30, 2023 00:58
lf + fzf
cmd fzfdirs ${{
FZF_DEFAULT_OPTS="--preview 'bat --style=numbers --color=always {}' --height ${FZF_TMUX_HEIGHT:-40%} --reverse --bind=ctrl-z:ignore ${FZF_DEFAULT_OPTS-} ${FZF_CTRL_T_OPTS-}"
D=`find -L . -mindepth 1 \\( -path '*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune -o -type d -print -o -type l -print 2> /dev/null | cut -b3- | fzf -m`
if [[ $D == '' ]]; then
lf -remote "send $id echo fzf aborted."
else
lf -remote "send $id cd $D"
fi
}}
#!/usr/bin/env python2
import sys
data = ''
if len(sys.argv) == 2:
data = sys.argv[1]
else:
print "No input specified\n"
sys.exit(0)
# install fortune
#
# pacman -S fortune-mod
# apt-get install fortune
#
# place in _plugins/
#
# to use:
# {% fortune [args] %}
#