blob: e4954d3d65a25a863c33c33f5744be0211e8b95e [file] [log] [blame]
# This is a script that integrates with gtimelog
if [ $# -eq 0 ]; then
cat ~/.local/share/gtimelog/timelog.txt | grep "$(date +"^%Y-%m-%d")" | more
else
echo "$(date +"%Y-%m-%d %H:%M"): $@" >> ~/.local/share/gtimelog/timelog.txt
fi