blob: af63604261f4201aa1195208aa3d33646519d228 (
plain) (
blame)
1
2
3
4
5
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"
|