https://github.com/math0ne/todoist-tray
A minimal windows system tray app for todoist
https://github.com/math0ne/todoist-tray
Last synced: 6 months ago
JSON representation
A minimal windows system tray app for todoist
- Host: GitHub
- URL: https://github.com/math0ne/todoist-tray
- Owner: math0ne
- Created: 2025-09-18T23:43:05.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-26T20:22:39.000Z (9 months ago)
- Last Synced: 2025-10-09T23:55:24.682Z (9 months ago)
- Language: JavaScript
- Size: 66.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todoist Windows System Tray App
A minimal Windows system tray application for Todoist using Electron. Click the tray icon to see your latest todos and add new ones quickly.

## Development
```
# Install dependencies
npm install
# Run in development
npm start
# Build for distribution
npm run build # Creates both installer and portable exe
npm run build-portable # Creates only portable exe
npm run build-installer # Creates only installer
```
## File Structure
```
minimal-todoist/
├── main.js # Main Electron process
├── renderer/
│ ├── index.html # Popup window UI
│ ├── styles.css # Styling
│ └── renderer.js # Frontend logic
├── assets/
│ └── tray-icon.png # System tray icon
└── package.json
```
## License
MIT License - feel free to use and modify as needed.