Current activity logger
- by user72605
Very inexperienced coder here:
Does anyone know of an app (for iOS or Mac) that asks for my current activity every hour or so? I see tons of apps that let you log your activities, but none that use popups/notifications to actively ask you.
I found a script that looks promising (source), but I'm having trouble implementing it so that it repeats every hour:
#!/bin/bash
echo What are you doing right now?
read -e what
echo `date` - $what >> timelog.txt
Thanks!