Installation
You need Git for the initial clone step below. If Git isn’t installed yet, install it first (Debian/Ubuntu: sudo apt install git) or follow: Using Git on Linux
1) Clone Lumi (first-time setup)
Make the directory for Lumi and use Git to clone the source code.
sudo apt install git
mkdir -p ~/code
cd ~/code
# Clone via SSH (matches the Git guide above)
git clone git@ssh.gitlab.gnome.org:pixelmixer/lumi-dev.git lumi-dev
# Or clone via HTTPS (no SSH key setup)
# git clone https://gitlab.gnome.org/pixelmixer/lumi-dev.git lumi-dev2) Install Dependencies (first-time setup)
cd ~/code/lumi-dev/build/lumi/scripts
sudo bash lumi-install-packages.sh3) Build Lumi (first-time setup)
First full setup build (first time or after major changes):
cd ~/code/lumi-dev/build/lumi/scripts
bash lumi-build-script.sh --scope setup --dir lumi-dev4) Launch Lumi
cd ~/code/lumi-dev/build/lumi/scripts
bash lumi-launch-active.sh lumi-devOptional: Rebuild / Compile
Normal rebuild after code changes:
cd ~/code/lumi-dev/build/lumi/scripts
bash lumi-build-script.sh --scope build --dir lumi-devQuick compile-only path:
cd ~/code/lumi-dev/build/lumi/scripts
bash lumi-build-script.sh --scope compile --dir lumi-devBuild a single integrated component (replace babl with gegl or gtk3):
cd ~/code/lumi-dev/build/lumi/scripts
bash lumi-build-script.sh --scope build --dir lumi-dev --component bablOptional: Build Types
Use --type when needed:
debug– debugging workflowsdebugoptimized– balanced default for developmentrelease– fastest runtime
Example:
bash lumi-build-script.sh --scope build --dir lumi-dev --type release