mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-10 19:10:36 +00:00
10 lines
370 B
Plaintext
10 lines
370 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
# AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry)
|
||
|
# https://www.youtube.com/user/gotbletu
|
||
|
# DESC: open a cheatsheet to read notes
|
||
|
# DEPEND: fzf findutils coreutils
|
||
|
|
||
|
selected="$(find ~/.config/redpill/ -type f | sort | fzf -e -i --reverse --delimiter / --with-nth -1 --preview 'cat {}')"
|
||
|
[ -z "$selected" ] && exit
|
||
|
"$EDITOR" "$selected"
|