From 394f1ed37ce860da6fdc385769bf29f9737105cd Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Thu, 4 Jun 2026 21:21:20 +0900 Subject: chore: genesis — remove all files to rebuild from scratch (arch rewrite) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packaging/electron/dispatch-electron.install | 32 ---------------------------- 1 file changed, 32 deletions(-) delete mode 100644 packaging/electron/dispatch-electron.install (limited to 'packaging/electron/dispatch-electron.install') diff --git a/packaging/electron/dispatch-electron.install b/packaging/electron/dispatch-electron.install deleted file mode 100644 index 9eea6b1..0000000 --- a/packaging/electron/dispatch-electron.install +++ /dev/null @@ -1,32 +0,0 @@ -post_install() { - echo "" - echo "==> Dispatch Electron desktop wrapper installed (self-contained)." - echo " Launch from your menu (Dispatch) or run:" - echo " dispatch" - echo "" - echo " The bundled frontend talks to the API URL baked in at build" - echo " time (default: http://localhost:18390). To run a local backend:" - echo " pacman -S dispatch dispatch-systemd # systemd" - echo " pacman -S dispatch dispatch-s6 # s6 / Artix" - echo "" - echo " To point the wrapper at a different backend, rebuild with:" - echo " VITE_API_URL=\"http://your-host:18390\" bin/build-pkg-electron" - echo "" - - if command -v update-desktop-database >/dev/null 2>&1; then - update-desktop-database -q /usr/share/applications 2>/dev/null || true - fi - if command -v gtk-update-icon-cache >/dev/null 2>&1; then - gtk-update-icon-cache -q /usr/share/icons/hicolor 2>/dev/null || true - fi -} - -post_upgrade() { - post_install -} - -post_remove() { - if command -v update-desktop-database >/dev/null 2>&1; then - update-desktop-database -q /usr/share/applications 2>/dev/null || true - fi -} -- cgit v1.2.3