forked from pisilinux-rs/yali-rs
62000b7c87
- Moved 16 slide PNGs from assets/ to slides/img/ - Replaced [icons] mapping section with direct paths in icon field - Added slides_test standalone binary for testing slideshows - Added default-run = "yali-rs" in Cargo.toml to fix cargo run ambiguity - Fixed edit dialog auto-resize and text field wrapping in partition.rs - Updated branding.rs to load external slides from slides/ directory - Removed [slides] section from branding.toml files - Revamped CopyFilesJob with find-based progress tracking (rsync --out-format) - Fixed install progress bar visibility logic - Tweaked auto-install CLI output with sub-progress and current file - Switched language-icon.svg to white fills for dark theme - Minor locale fixes
42 lines
2.4 KiB
TOML
42 lines
2.4 KiB
TOML
# ╔══════════════════════════════════════════════════════════════════╗
|
||
# ║ Yali-RS Installation Tool — Visual Customization ║
|
||
# ║ branding_en.toml ║
|
||
# ╚══════════════════════════════════════════════════════════════════╝
|
||
|
||
# ──────────────────────────────────────────────────────────────────
|
||
# [general] – Distribution Identity
|
||
# ──────────────────────────────────────────────────────────────────
|
||
[general]
|
||
# Sidebar logo (Yali)
|
||
yali_logo = "assets/icons/YALI_icon_LIGHT.svg"
|
||
|
||
# Main page logo (PisiLinux distribution)
|
||
pisi_logo_dark = "assets/pisi-logo-dark.png"
|
||
pisi_logo_light = "assets/pisi-logo-light.png"
|
||
|
||
# Title of the installation window
|
||
title = "YALI Installation Wizard"
|
||
|
||
# Subtitle displayed in the left sidebar
|
||
subtitle = "YALI"
|
||
|
||
# ──────────────────────────────────────────────────────────────────
|
||
# [theme] – UI Style & Color Palette
|
||
# ──────────────────────────────────────────────────────────────────
|
||
[theme]
|
||
primary = "#1a73e8"
|
||
accent = "#34a853"
|
||
background = "#181824"
|
||
text = "#e2e8f0"
|
||
|
||
|
||
# ──────────────────────────────────────────────────────────────────
|
||
# [oem] – OEM Installer Configuration (Factory Mode)
|
||
# ──────────────────────────────────────────────────────────────────
|
||
[oem]
|
||
enabled = false
|
||
skip_steps = [0, 1, 2, 3, 4]
|
||
default_username = "pisi"
|
||
default_hostname = "pisi-pc"
|
||
default_password = "pisi"
|