Getting started on Arch Linux
Prebuilt (fastest path)
wayle-bin from the AUR ships both binaries prebuilt. If you take this route, skip the build step below and jump straight to Run.
yay -S wayle-binInstall dependencies
Install Rust via rustup, then the system libraries:
sudo pacman -S --needed git gtk4 gtk4-layer-shell gtksourceview5 \
libpulse fftw libpipewire systemd-libs clang base-develIf you want the battery, bluetooth, network, power, or audio modules, install their daemons (skip any you don't need):
sudo pacman -S --needed bluez bluez-utils networkmanager upower \
power-profiles-daemon pipewire wireplumber pipewire-pulse
sudo systemctl enable --now bluetooth NetworkManager upower power-profiles-daemonBuild
git clone https://github.com/wayle-rs/wayle
cd wayle
cargo install --path wayle
cargo install --path crates/wayle-settingsIcon assets
Wayle 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:
wayle icons setupRun
Start the panel in the background:
wayle panel startOther lifecycle commands: wayle panel status, wayle panel restart, wayle panel stop.
For debugging, run the shell in the foreground so logs print to the terminal:
wayle shellSettings GUI
wayle panel settingsThis launches wayle-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
Wayle reads $XDG_CONFIG_HOME/wayle/config.toml, falling back to ~/.config/wayle/config.toml. On first run, if no config exists, Wayle writes a default one. A JSON schema is written to ~/.config/wayle/schema.json at startup, which editors with a TOML LSP can use for validation and completion.