Skip to content

This is a scheduling utility which uses crontab as the backend. It's based on qroneko sourceforge project

License

Notifications You must be signed in to change notification settings

MX-Linux/job-scheduler

 
 

Repository files navigation

Job Scheduler

latest packaged version(s) build result

Description

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/

Dependencies

  • Qt6 (Core, Gui, Widgets, LinguistTools)
  • CMake >= 3.16
  • Ninja build system
  • cron or cronie

Building

Prerequisites

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 Commands

Quick Build

./build.sh

Build Options

./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 package

Manual Build

mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
ninja

Debian Package

Build 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

About

This is a scheduling utility which uses crontab as the backend. It's based on qroneko sourceforge project

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 83.8%
  • Shell 9.7%
  • CMake 4.4%
  • HTML 2.1%