It's just a stupid combination of shell tricks that compose into a quick memo browser.
I guess I'll keep reinventing program launchers and fuzzy finders till I die (first ratfinder version being from 2006)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Raimon Grau <raimonster@gmail.com> | |
# bmgo # shows menu of boookmarks | |
# bmgo go | |
# bmgo add reddit https://www.reddit.com | |
# bmgo add example \#mytag1 \#mytag2 https://www.example.com | |
cmd_add() { | |
shift | |
echo "$@" >> "$0" | |
} | |
cmd_go() { | |
sed '0,/^__DATA__$/d' "$0" | | |
dmenu -i -l 20 | | |
rev | cut -f1 -d' ' | rev | | |
xargs xdg-open | |
} | |
main() { | |
cmd_${1:-go} $@ | |
} | |
main $@ | |
exit | |
__DATA__ | |
r/emacs https://www.reddit.com/r/emacs | |
gmail https://www.gmail.com |
No hay comentarios:
Publicar un comentario