fix: prevent antergos-live from deleting calamares.desktop, uncomment desktop-items calamares copy

Two sed patches (same pattern as existing GRUB patches):
- Comment out remove_calamares_launcher in antergos-live script
  so our branded calamares.desktop survives boot and shows
  in the app menu with locale translations.
- Uncomment calamares section in desktop-items so it copies
  calamares.desktop to the localized Desktop path (e.g.
  ~/Pulpit/ for Polish) instead of only the NoExtract'd
  calamares-config-switcher.desktop.
This commit is contained in:
2026-07-29 19:23:14 +02:00
parent 8244ba1eb1
commit d73e09eebb
+8 -1
View File
@@ -8,7 +8,7 @@ pkgname=('antergos-live-base'
'antergos-live-openrc'
'antergos-grub-live')
pkgver=2026.06
pkgrel=4
pkgrel=5
pkgdesc='Antergos live session'
arch=('any')
url="https://github.com/Antergos-NeXT/antergos-live"
@@ -23,6 +23,13 @@ pkgver() {
build() {
make -C artix-live
# Don't remove calamares.desktop — we ship a branded one
sed -i 's/^remove_calamares_launcher/# remove_calamares_launcher/' artix-live/bin/artix-live
# Uncomment calamares section so desktop-items copies it to localized Desktop
sed -i '/# if .*calamares/,/# fi/ s/^# //' artix-live/bin/desktop-items
sed -i 's/artix/antergos/g; s/Artix/Antergos/g' \
artix-live/data/grub/cfg/kernels.cfg \
artix-live/data/grub/cfg/variable.cfg \