Launch Todoist Minimized on Windows Startup¶
Todoist doesn't provide a way to launch Todoist on startup, minimized. Here's a script that does it.
- Download and install [AHK](https://www.autohotkey.com/download/ahk-install.exe](https://www.autohotkey.com/download/ahk-install.exe).
- Copy and paste the script below in a new
todoist.ahk
file. - Save this
todoist.ahk
file inside your startup folder. You can access it by usingCTRL+R
and typingshell:startup
. - (Optional) Test the script by double-clicking the file. Todoist should open and instantly minimize to the taskbar.
- That's it. Todoist will start and then minimize itself next time you boot up ;)
Run, %localappdata%\Programs\todoist\Todoist.exe
WinWait, ahk_exe Todoist.exe
WinClose, ahk_exe Todoist.exe
Thanks belima for the instructions that were missing ✌️