Skip to content

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.

  1. Download and install [AHK](https://www.autohotkey.com/download/ahk-install.exe](https://www.autohotkey.com/download/ahk-install.exe).
  2. Copy and paste the script below in a new todoist.ahk file.
  3. Save this todoist.ahk file inside your startup folder. You can access it by using CTRL+R and typing shell:startup.
  4. (Optional) Test the script by double-clicking the file. Todoist should open and instantly minimize to the taskbar.
  5. 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 ✌️

Comments