Getting started on Fedora
Requires Fedora 42 or later. Fedora 41 reached EOL on 2025-11-19.
Install dependencies
Install Rust via rustup, then the system libraries:
sudo dnf install git cmake pkgconf-pkg-config gtk4-devel gtk4-layer-shell-devel \
gtksourceview5-devel pulseaudio-libs-devel fftw-devel pipewire-devel \
systemd-devel clang gccFedora Workstation already ships the runtime daemons for battery, bluetooth, network, power, and audio. Minimal and Server installs need:
sudo dnf install pipewire-pulseaudio wireplumber NetworkManager bluez upower \
power-profiles-daemon
sudo systemctl enable --now bluetooth NetworkManager upower power-profiles-daemonBuild
git clone https://github.com/DigitalPals/Lumen lumen
cd lumen
cargo install --path lumen
cargo install --path crates/lumen-settingsIcon assets
Lumen ships icons as source files that get copied into your user data directory on first setup. Run this from the cloned repo, before deleting it:
lumen icons setupRun
Start the panel in the background:
lumen panel startOther lifecycle commands: lumen panel status, lumen panel restart, lumen panel stop.
For debugging, run the shell in the foreground so logs print to the terminal:
lumen shellSettings GUI
lumen panel settingsThis launches lumen-settings, which edits the same config the shell reads. Changes apply live. Anything the GUI doesn't cover can still be edited by hand in config.toml.
Configuration
Lumen reads $XDG_CONFIG_HOME/lumen/config.toml, falling back to ~/.config/lumen/config.toml. On first run, if no config exists, Lumen writes a default one. A JSON schema is written to ~/.config/lumen/schema.json at startup, which editors with a TOML LSP can use for validation and completion.