TimerDeck is an operator‑grade desktop GUI for inspecting and managing systemd timers on Linux systems.
Its goal is to provide a clear, unified interface for viewing scheduled tasks, understanding their execution history, and managing timer configurations without relying on command‑line tooling.
- View systemd timers, units, and next/last run times
- Inspect associated service units and execution results
- Manage both user and system‑level timers
- Optional support for viewing and editing cron jobs
- Privilege‑aware operations with either on‑demand elevation or secure credential storage
This repository contains the initial project structure.
Development will begin after the next RunUpdates milestone.
TimerDeck is being developed in structured phases aligned with the Linktech Engineering Tools Suite roadmap. The following milestones outline the planned progression of the project:
- Project structure and repository initialization
- Main window, sidebar navigation, and stacked views
- Dashboard layout with Breeze‑style cards
- Icon system using local SVG assets
- Initial README, badges, and documentation
- Systemd timer enumeration (user + system scopes)
- Parsing next/last run times
- Linking timers to their associated service units
- Basic cron job detection (optional module)
- Dashboard live data updates
- Timer detail view (unit metadata, logs, execution history)
- Start/stop/reload actions for timers and services
- Privilege‑aware operations (pkexec / sudo integration)
- Editing timer and service unit files with safety checks
- Cron editor (optional, gated behind a setting)
- Search and filtering across timers and units
- Failure diagnostics and log extraction
- Exportable reports (JSON/YAML summaries)
- Dark‑mode palette and icon variants
- Hover/active states for cards and sidebar
- Animated refresh feedback
- Packaging for distribution (AppImage, Flatpak, DEB)
- v1.0 release
TimerDeck targets modern Linux systems with systemd. Development requires:
- Python 3.10+
- PySide6
- Access to systemctl and journalctl
- A Linux environment (desktop or VM)
Install dependencies:
pip install -r requirements.txtFrom the project root:
python -m timerdeckOr directly:
python TimerDeck.pytimerdeck/
├─ ui/ # Qt UI components, icons, styles
├─ core/ # Application logic and helpers
├─ data/ # systemd/cron parsing modules
├─ resources/ # stylesheets, themes
└─ tests/ # unit tests
Contributions are welcome once the core architecture stabilizes. Issues and pull requests should align with the Roadmap phases.
TimerDeck is released under the MIT License.
See the LICENSE file for full details.