summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/datelog6
1 files changed, 6 insertions, 0 deletions
diff --git a/.scripts/datelog b/.scripts/datelog
new file mode 100755
index 0000000..af63604
--- /dev/null
+++ b/.scripts/datelog
@@ -0,0 +1,6 @@
+#!/bin/sh
+# I have a cronjob run this every minute to log time spend on the computer in
+# `~/.time` for each day. Gives estimate of daily NEEThood.
+
+date=`date '+%y-%m-%d'`
+echo $((`cat ~/.time/"$date"`+1)) > ~/.time/"$date"