NoSignal-OS/os updates/system-polish/nosignal-webapp-remove
28allday 19fd794b6b NoSignal — fully-offline Arch → Hyprland desktop installer
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>
2026-06-21 11:03:10 +01:00

9 lines
362 B
Bash
Executable file

#!/bin/sh
# nosignal-webapp-remove — remove a web app created by nosignal-webapp-install.
set -eu
[ $# -ge 1 ] || { echo 'Usage: nosignal-webapp-remove "App Name"' >&2; exit 1; }
NAME="$1"
APPS="$HOME/.local/share/applications"
rm -f "$APPS/$NAME.desktop" "$APPS/icons/$NAME".*
update-desktop-database "$APPS" 2>/dev/null || true
echo "Removed web app: $NAME"