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>
22 lines
523 B
Bash
Executable file
22 lines
523 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Ensure the NoSignal user-override files exist — bash port of configs.fish.
|
|
# Installed to ~/.config/hypr/scripts/configs.fish (the path hyprland.conf
|
|
# exec's at startup); runs as bash via this shebang.
|
|
# Usage: configs <config-dir>
|
|
|
|
reload=false
|
|
dir="$1"
|
|
|
|
[[ -d "$dir" ]] || mkdir -p "$dir"
|
|
|
|
if [[ ! -f "$dir/hypr-vars.conf" ]]; then
|
|
touch "$dir/hypr-vars.conf"
|
|
reload=true
|
|
fi
|
|
|
|
if [[ ! -f "$dir/hypr-user.conf" ]]; then
|
|
touch "$dir/hypr-user.conf"
|
|
reload=true
|
|
fi
|
|
|
|
$reload && hyprctl reload
|