From e1d802a1deb1c732b460706cd3d68a1af40b0d4d Mon Sep 17 00:00:00 2001 From: Adam Gausmann Date: Mon, 25 Sep 2023 22:47:44 -0500 Subject: [PATCH] Add bburner --- templates/bin/bburner | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 templates/bin/bburner diff --git a/templates/bin/bburner b/templates/bin/bburner new file mode 100755 index 0000000..39be7c5 --- /dev/null +++ b/templates/bin/bburner @@ -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