Good afternoon, ladies and gentlemen. From time to time I forget to log the time, so I wanted to use some software that reminds me of this with the messages "LOG TIME". But alas, I did not find a suitable software for macOS, and somehow it was necessary to solve the problem.
I offer you my solution.
- Open a terminal and enter the following:
$ env EDITOR=nano crontab -e # We open it through `nano` so that it is not a problem to exit `vim`.
- We enter the following:
$ 30 * * * * osascript -e 'display notification "Time to log time!!!!"'
- We save this whole thing by combining the keys CONTROL + O
- Now every 30 minutes we will be reminded to log our time.