#!/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"