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
517 B
Bash
Executable file
9 lines
517 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Migration: make the Caelestia lock faillock-free. patch-lock-pam.sh
|
|
# does both halves — delivers the faillock-free service into the dir the lock
|
|
# actually reads (shellDir/assets/pam.d/caelestia) and repoints Pam.qml
|
|
# ("passwd" -> "caelestia"). Idempotent; the pacman hook re-applies it after
|
|
# every caelestia-shell upgrade.
|
|
set -euo pipefail
|
|
: "${NOSIGNAL_SRC:?NOSIGNAL_SRC must point at the NoSignal source root}"
|
|
sudo sh "$NOSIGNAL_SRC/caelestia-lock-faillock/patch-lock-pam.sh" || true
|