Emacs, aspell, flatpak, oh my

It worked for me. I tried the emacs sysext. I used these commands:

sudo install -d -m 0755 -o 0 -g 0 /var/lib/extensions /var/lib/extensions.d /etc/sysupdate.d
sudo restorecon -RFv /var/lib/extensions /var/lib/extensions.d /etc/sysupdate.d
SYSEXT="emacs"
RELEASE_TAG="fedora-silverblue-41"
URL="https://github.com/travier/fedora-sysexts/releases/download/${RELEASE_TAG}/${SYSEXT}.conf"
curl --silent --location "${URL}" | sudo tee "/etc/sysupdate.d/${SYSEXT}.conf"

It’s needed to change the /etc/sysupdate.d/emacs.conf. I changed the Path field from Source section to this:

Path=https://github.com/travier/fedora-sysexts/releases/download/fedora-silverblue-%w/

It was needed because it replace /%o-%W with bluefin-dx-nvidia that doesn’t exists (404 error). So I forced to be fedora-silverblue. And continued with:

sudo /usr/lib/systemd/systemd-sysupdate list
sudo /usr/lib/systemd/systemd-sysupdate update
sudo systemctl restart systemd-sysext.service
systemd-sysext status

I tried to call emacs-desktop but I had this error:

❯ LC_ALL=C emacs-desktop
/usr/bin/emacs-desktop: line 18: exec: emacs: not found

But call emacs-pgtk works.

1 Like