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>
9 lines
441 B
Bash
Executable file
9 lines
441 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# omarchy-hw-nvidia-without-gsp — NoSignal shim. Exit 0 only for legacy pre-GSP
|
|
# NVIDIA (Maxwell/Pascal/Volta → the nvidia-580xx driver branch).
|
|
#
|
|
# This shim cannot reliably tell GPU generations apart, so it defaults to the
|
|
# modern branch (always exit 1; omarchy-hw-nvidia-gsp handles present cards). If
|
|
# you actually run a pre-Turing NVIDIA card, install nvidia-580xx-utils /
|
|
# nvidia-580xx-dkms by hand.
|
|
exit 1
|