Implements all four components from the BOS spec: - dotfiles/: default Hyprland, bread, breadbox, breadcrumbs configs - iso/: archiso profiledef, package list, Calamares YAML modules, post-install.sh - bos-settings/: Cargo workspace with GTK4 settings app (8 views: snapshots, packages, bread, breadbar, breadbox, breadcrumbs, breadpad, hyprland) https://claude.ai/code/session_01WszGHvCmxgcyTwNSkfLF9P
12 lines
234 B
Rust
12 lines
234 B
Rust
mod config;
|
|
mod state;
|
|
mod theme;
|
|
mod ui;
|
|
|
|
fn main() {
|
|
let app = gtk4::Application::builder()
|
|
.application_id("com.breadway.bos-settings")
|
|
.build();
|
|
app.connect_activate(ui::window::build_ui);
|
|
app.run();
|
|
}
|