Add a first working version of the done script
diff --git a/scripts/done.sh b/scripts/done.sh
index 6c5ccad..e4954d3 100644
--- a/scripts/done.sh
+++ b/scripts/done.sh
@@ -1,6 +1,6 @@
# This is a script that integrates with gtimelog
-# if [ $# -eq 0 ]; then
-#
-# else
-# echo "$() $@" >> ~/.local/share/gtimelog/timelog.txt
-# fi
+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