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>
7 lines
395 B
Bash
Executable file
7 lines
395 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# omarchy-restart-walker — NoSignal shim. NoSignal uses the caelestia launcher
|
|
# (Quickshell), not Omarchy's Walker/Elephant. There is no Walker service to
|
|
# restart, so just refresh the desktop-entry database (so newly-added .desktop
|
|
# files, e.g. DeckShift's, show up) and succeed.
|
|
update-desktop-database "$HOME/.local/share/applications" >/dev/null 2>&1 || true
|
|
exit 0
|