Single-script builder (nosignal.sh) that turns a stock Arch Linux ISO into a fully-offline installer for a themed Hyprland + caelestia (Quickshell) desktop: matching SDDM greeter, Btrfs/Limine bootable snapshots, chwd-style GPU detection, and a curated "os updates" layer (keybind cheatsheet, settings panels, system polish, on-box management skill). See README.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
15 lines
563 B
Bash
Executable file
15 lines
563 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# omarchy-install-gaming-steam — NoSignal shim for Omarchy's Steam bootstrap.
|
|
#
|
|
# Installs Steam (yay resolves the lib32 GPU driver deps) and best-effort
|
|
# launches it once for first-run setup, mirroring Omarchy's behaviour. Requires
|
|
# the [multilib] repo enabled (steam is a multilib package) — see
|
|
# install-gaming-enablement.sh.
|
|
set -euo pipefail
|
|
|
|
yay -S --needed --noconfirm steam
|
|
|
|
# Best-effort first launch (non-fatal), like Omarchy's bootstrap.
|
|
if command -v steam >/dev/null 2>&1; then
|
|
setsid -f steam >/dev/null 2>&1 || true
|
|
fi
|