Initial commit: Omeron modular Hyprland setup framework

- Modular installer with gum-based TUI
- Fresh-install detection with auto GPU driver selection
- Preflight module for system detection (Intel/AMD/NVIDIA)
- Core modules: packages, dotfiles, services, SDDM
- Optional software installer (Obsidian, Neovim, VS Code, etc.)
- Homelab config module with dynamic AGS integration
- Two complete themes: Forest Neon and Rose Night
- 19 Hyprland control scripts + 4 AGS widgets
- Idempotent dotfile deployment with automatic backup
- YAML-based configuration, extensible module system
- Full logging to ~/.local/share/omeron/
This commit is contained in:
2026-05-27 20:51:58 +02:00
commit be7bffc1e5
86 changed files with 9984 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
#!/usr/bin/env bash
module_description() { printf "Install PipeWire audio tools\n"; }
module_required() { return 1; }
module_should_skip() { return 1; }
module_prereqs() { return 0; }
module_main() {
log_section "PipeWire Audio Tools"
local packages=(
pipewire
pipewire-pulse
pipewire-alsa
pipewire-jack
wireplumber
pavucontrol
helvum
easyeffects
)
local to_install=()
local pkg
for pkg in "${packages[@]}"; do
if pacman -Si "$pkg" >/dev/null 2>&1 && ! is_package_installed "$pkg"; then
to_install+=("$pkg")
fi
done
if ((${#to_install[@]})); then
log_info "Installing PipeWire tools: ${to_install[*]}"
install_pacman "${to_install[@]}"
log_success "PipeWire tools installed"
else
log_info "All PipeWire tools already installed"
fi
if have systemctl; then
systemctl --user enable --now pipewire pipewire-pulse wireplumber 2>/dev/null || true
log_info "PipeWire services enabled"
fi
}