Job Scheduler is a graphical job scheduling utility for Linux that provides an intuitive interface to create, edit, and remove cron jobs. It uses crontab as the backend and is suitable for both novice and advanced users to simplify task automation and scheduling.
Based upon qroneko 0.5.4, released in 2005 by korewaisai ([email protected]) More details: http://qroneko.sourceforge.net/
- Qt6 (Core, Gui, Widgets, LinguistTools)
- CMake >= 3.16
- Ninja build system
- cron or cronie
Set up Qt6 development environment and install build dependencies:
# Debian/Ubuntu
sudo apt install cmake ninja-build qt6-base-dev qt6-base-dev-tools qt6-tools-dev qt6-tools-dev-tools
# Fedora
sudo dnf install cmake ninja-build qt6-qtbase-devel qt6-qttools-devel
# Arch/Manjaro
sudo pacman -S --needed base-devel cmake ninja qt6-base qt6-tools cronie
makepkg -si # builds with the provided PKGBUILD./build.sh./build.sh --help # Show all options
./build.sh --clean # Clean build
./build.sh --debug # Debug build
./build.sh --clang # Use clang compiler
./build.sh --debian # Build Debian package
./build.sh --arch # Build Arch Linux packagemkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
ninjaBuild and install the Debian package:
./build.sh --debian
sudo dpkg -i debs/job-scheduler_*.deb
### Arch Package
Build and install the Arch package:
```bash
./build.sh --arch
sudo pacman -U job-scheduler-*.pkg.tar.zst
## Project Structure
job-scheduler/ ├── src/ # Source files (.cpp, .h) ├── translations/ # Translation files (.ts, .qm) ├── images/ # Application icons ├── help/ # Documentation files ├── scripts/ # Launcher scripts and policies ├── debian/ # Debian packaging files ├── CMakeLists.txt # CMake build configuration ├── build.sh # Build script └── application.qrc # Qt resource file