-
Notifications
You must be signed in to change notification settings - Fork 14
AppImage support #30
Comments
Hello! Yes I played around with this for a while, but one thing picoDeploy does for greenworks (steam support), is copy the steam ID in a text file, to the correct location for steam to know that the game is currently being played. AppImage has write protection for this, so it cannot be done, thus I left it out of the project. However, I think adding AppImage suppport is as simple as adding another field to the Let me know if you would like me to find it for you / give you some steps if you need any help 😄 |
Where does the ID need to be copied? While the contents of the AppImage are not writeable at runtime, the software inside the AppImage can write e.g., to |
@probonopd Yeah that is the thing, it needs to be written into the contents of the AppImage sadly. See here: https://github.com/greenheartgames/greenworks/blob/master/docs/build-instructions-electron.md you can CTRL+F for Since implementing greenworks is already confusing/hard enough I left out App Image. However, I'd be open to adding support for AppImage, and we can add a blurb about how it won't work for Greenworks? If you would be so kind, you can totally open up a PR for this :) |
Is it the same |
It is not, it is something that is added by the user. But the thing is, it has to be copied next to the binary run by steam. So for example, on osx, it would be inside the |
You could try to place a symlink there inside the AppImage that would point to some location inside |
Ohhh that's not a bad Idea, though, are you sure you could do symlinks inside an appImage? We'd also need to know the context of the code being run in App Images. And if you don't mind enlightening mean, what is a LD_PRELOAD library? I googled it, but I am not 100% sure of the implications :) |
Yes.
An AppImage is just a self-mounting filesystem that executes the
It is a library that can override native OS functions. For example, you could write (pseudo-code):
|
Dude, so I just clicked your Github Profile, I didn't know you were part of the AppImage org haha! :') Cool, I'll just go ahead and add App image support, and update the "Integrating Greenworks" Docs when I get the time, about symlinking the steam app id text file 😄 |
Can picoDeploy produce AppImage files for Linux?
electron-builder
has native support built in.The text was updated successfully, but these errors were encountered: