all repos — dotfiles @ 79d583c3c5402754fffbac278653c96aa7c2d031

linux dotfiles

bin/scripts/1log

1 2 3 4 5 6 7 8
#!/bin/sh
# life log (stole from icy)
# git.icyphox.sh/dotfiles/tree/home/bin/log

date="$(date "+%Y-%m-%d %H:%M:%S")"
l="$(printf '' | dmenu -p "$date")"
[ "$l" = "" ] && exit
printf '%s\t%s\n' "$date" "$l" >> ~/.config/ll