blob: e4954d3d65a25a863c33c33f5744be0211e8b95e [file] [log] [blame]
Skyler Grey38b468f2022-08-11 11:57:28 +01001# This is a script that integrates with gtimelog
Skyler Grey0a5d5af2022-08-11 12:56:54 +01002if [ $# -eq 0 ]; then
3 cat ~/.local/share/gtimelog/timelog.txt | grep "$(date +"^%Y-%m-%d")" | more
4else
5 echo "$(date +"%Y-%m-%d %H:%M"): $@" >> ~/.local/share/gtimelog/timelog.txt
6fi