all repos — dotfiles @ 30f2afecc3e33577cba9db2740d0b5ba93150b55

linux dotfiles

add life log script
Prithu Goswami prithugoswami524@gmail.com
Mon, 08 Feb 2021 21:45:55 +0530
commit

30f2afecc3e33577cba9db2740d0b5ba93150b55

parent

59cb8d4e7c1136ef2ef0a20e3d65aa50f0bb72c2

1 files changed, 8 insertions(+), 0 deletions(-)

jump to
A bin/scripts/1log

@@ -0,0 +1,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