Root cause: FPM-generated .pacman packages copy icons directly to /usr/share/icons/hicolor/*/apps/netcatty.png, bypassing Arch's alpm hooks that normally run gtk-update-icon-cache. Without a refreshed cache, KDE Plasma cannot resolve Icon=netcatty and falls back to a generic document icon in the app menu. Fix: - Copy electron-builder's default after-install template to scripts/linux/after-install.tpl, append gtk-update-icon-cache call - Create scripts/linux/after-remove.tpl with the same cache refresh - Wire into pacman.afterInstall/pacman.afterRemove (NOT linux.afterInstall — the schema places these under target-level options like PacmanOptions/DebOptions, not LinuxConfiguration) - Add test in electron-builder-config.test.cjs The command is idempotent on systems without gtk-update-icon-cache (hash guard) and uses || true to never break package installation.
32 lines
1.2 KiB
Smarty
32 lines
1.2 KiB
Smarty
#!/bin/bash
|
|
|
|
# Delete the link to the binary
|
|
# update-alternatives --remove <name> <path>: 'path' must be the registered alternative binary,
|
|
# not the generic symlink — see https://man7.org/linux/man-pages/man1/update-alternatives.1.html
|
|
if type update-alternatives >/dev/null 2>&1; then
|
|
update-alternatives --remove '${executable}' '/opt/${sanitizedProductName}/${executable}'
|
|
else
|
|
rm -f '/usr/bin/${executable}'
|
|
fi
|
|
|
|
APPARMOR_PROFILE_DEST='/etc/apparmor.d/${executable}'
|
|
|
|
# Remove and unload apparmor profile.
|
|
if [ -f "$APPARMOR_PROFILE_DEST" ]; then
|
|
# Unload the profile from the running kernel before deleting the file so the
|
|
# policy is not left enforced until the next reboot. Mirror the chroot guard
|
|
# used in the after-install script — live AppArmor operations are not
|
|
# meaningful inside a chroot.
|
|
# https://wiki.debian.org/AppArmor/HowToUse
|
|
if apparmor_status --enabled > /dev/null 2>&1; then
|
|
if ! { [ -x '/usr/bin/ischroot' ] && /usr/bin/ischroot; } && hash apparmor_parser 2>/dev/null; then
|
|
apparmor_parser --remove "$APPARMOR_PROFILE_DEST" || true
|
|
fi
|
|
fi
|
|
rm -f "$APPARMOR_PROFILE_DEST"
|
|
fi
|
|
|
|
if hash gtk-update-icon-cache 2>/dev/null; then
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor || true
|
|
fi
|