Add bburner

This commit is contained in:
Adam Gausmann 2023-09-25 22:47:44 -05:00
parent 68a063362b
commit e1d802a1de

10
templates/bin/bburner Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
# "Backburner Roulette"
# Whenever you have an idea or a low-priority task that you want to
# come back to later, put it in .backburner.
# You can keep a .backburner in your homedir, or per-project, or whatever!
# Then, whenever you're bored and looking for something to do, run this:
# Pick one random line from the file, excluding commented and blank lines.
shuf .backburner | grep -Ev '^\s*(#.*)?$' | head -n1