中文 | English
Windows Desktop Application Usage Time Tracker
Lightweight system tray app that silently records your screen time
Just want to use it? Download the installer:
- Download the latest
UsageTracker_Setup_x.x.x.exe - Run the installer and follow the wizard (choose your language at startup)
- After installation, the app starts automatically and minimizes to the system tray
💡 No action needed day-to-day. The app runs silently in the background. Right-click the tray icon to view daily reports, open settings, etc.
- Daily Report: Right-click tray icon → "Yesterday's Report"
- Weekly / Monthly Report: Right-click tray icon → "Last Week Report" or "Last Month Report"
- Reports open as beautiful HTML pages with interactive charts, app rankings, game time comparisons, etc.
- Supports 3 themes: 🌸 Fairy Tale / 💼 Business / 📝 Minimal — switch in Settings
Right-click tray icon → "Settings" to configure:
| Feature | Description |
|---|---|
| General | Report theme (3 styles), data retention policy, language switch, auto-start on boot, auto-show yesterday's report on startup |
| Ignore List | Exclude apps from tracking; add from running processes, remove, or clear all |
| Categories | Create custom categories with colors; assign apps via file picker or running process list |
| Browsers | View detected browsers (7 built-in), add custom browsers |
| Games | Auto-detect Steam games, manually add games, add from running processes |
| Database | View database size, clean expired data by retention policy, export to CSV |
| Logs & Feedback | View runtime logs, export feedback packages for bug reporting |
In the daily report, each app row has a ✕ button on the right. Click it to ignore that app — it won't appear in future reports.
- 🪟 Automatic Tracking: Runs on startup, records which apps you use and for how long — zero manual effort
- 🌐 Browser Classification: Chrome, Edge, Firefox, etc. tracked separately for accurate internet time
- 🎮 Game Detection: Auto-detects Steam games, HoYoverse titles, and more — independent game time tracking
- 📊 Visual Reports: Daily / Weekly / Monthly reports with interactive charts and 3 switchable themes
- 🔔 Timeout Alerts: System notifications when you've been using browsers or games for too long
- 🛡️ Fully Local: No network, no uploads, no ads — all data stays on your computer
- 🌐 Bilingual: Full Chinese and English support — choose at install time or switch in settings
⚠️ If you just want to use this app, everything above is sufficient. The content below is for developers only.
Built with Python 3.11+, minimal dependencies (only 3):
# 1. Clone the repo
git clone https://github.com/GiftedScout/UsageTracker.git
cd UsageTracker
# 2. Create venv and install dependencies
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
# 3. Run
python -m src.mainAfter launch, the app minimizes to the system tray (bottom-right). Right-click the tray icon to open reports or settings.
Two-stage build with PyInstaller + Inno Setup:
# Install build dependencies
pip install pyinstaller
# Stage 1: PyInstaller → single-directory exe
pyinstaller UsageTracker.spec
# Stage 2: Inno Setup → installer (requires Inno Setup)
iscc installer.iss| File / Folder | Description |
|---|---|
src/ |
Core modules (tracking engine, data store, report generator, notifications, i18n) |
ui/ |
Settings GUI (7 tab pages) |
locales/ |
Translation files (zh-CN.json, en.json) |
assets/ |
Static resources (app icon, Chart.js, report theme CSS) |
docs/ |
Design documents |
installer.iss |
Inno Setup installer script |
requirements.txt |
Python dependencies |
LICENSE |
GPL-3.0 license |
| Layer | Technology |
|---|---|
| Language | Python 3.11+ |
| GUI | tkinter + pystray + Pillow |
| Database | SQLite (stdlib) |
| Charts | Chart.js (embedded in reports) |
| i18n | Custom JSON-based lightweight module |
| Build | PyInstaller → Inno Setup |
| Dependencies | Only psutil + pystray + Pillow — ultra lightweight |
- v0.1.0 — Bug fixes, bilingual support (zh-CN / en)
- v0.1.1 — Stability improvements, crash fixes
- v0.1.2 — Ignore list fixes, process picker, about dialog
- v0.2.0 — Event-driven tracking, auto-update, code signing
- v1.0.0 — Plugin system, cross-platform (macOS / Linux)
| Type | Link |
|---|---|
| GitHub Repository | https://github.com/GiftedScout/UsageTracker |
| License | GPL-3.0 |
| Design Report | docs/design-report-v0.1.0-beta.md |
Built with ❤️ by chaos · Licensed under GPL-3.0