- https://github.com/bongardino/introspection
- Clone or Download
- Download as Zip
- Unzip
- Copy the entire
introspection-master
folder to Applications
- Open the Terminal application
/Applications/introspection-master/ask_myself
to run it- You should get a popup, and a log.csv should get created in the
introspection-master
folder, which you can open in any spreadsheet viewer
That runs the app, but we want to put it on a timer so it runs automatically! So, we make an entry in crontab
- Open the Terminal application (beee careful in with this tool! The commands listed here are safe but never copy / paste things into your terminal if you don't trust the source and understand what they will do!)
env EDITOR=nano crontab -e
to open crontab, which will probably be blank. You can type in this window!- add
5 4 * * fri /Applications/introspection-master/ask_myself
to this file, which will cause ask_myself to run at 4:05 every Friday Ctrl + O
to saveCtrl + X
to exit
- Open the Text Edit Application
- File > Open > /Applications/introspection-master/ask_myself
- Edit the list of
opts
at the top of this file. to contain as many or few items as you want eg:
opts=(time_boxed
prioritized_tasks
limited_out_of_band_work
had_fun
)
to
opts=(drank_wine
ate_cookies
won_prizes
)
- Open the Terminal application
env EDITOR=nano crontab -e
to open crontab- delete the
5 4 * * fri
line Ctrl + O
to saveCtrl + X
to exit
- Change the crontab entry to something different! You can figure it out with this
https://crontab-generator.org/