What is the proper way for accessing apm (Atom package manager) for flatpakked Atom?
I couldn't find the answer searching by DDG or Google. Slightly related question.
I can run Atom itself via:
flatpak run io.atom.AtomOne way I can run apm is via:
/var/lib/flatpak/app/But this hardly seems normal. Is there some more reasonable/nice/clean/proper way to do this? Some things that don't work:
apmflatpak run io.atom.Atom.apmflatpak run io.atom.Apmflatpak run io.atom.Atom --apm/var/lib/flatpak/app/The last path exists but tells me:
/var/lib/flatpak/app/ 5: exec: /app/bin/apm-real: not found 1 Answer
flatpak run --command=apm io.atom.Atomor more specifically:
flatpak run --command=apm io.atom.Atom install packagename1 packagename2The answer was in these two (1, 2) closed issues on io.atom.Atom github page.