A simple hello world app for AsteroidOS
See https://wiki.asteroidos.org/index.php/Creating_an_Asteroid_app for instruction on how to build and run it.
If you have used the Hello World App as a template and wish to use it as the basis for your own AsteroidOS application here are the steps:
- Decide on a name for your project, (we use
myproject-name
as an example here) - Change the project name in
CMakeLists.txt
fromasteroid-helloworld
to your name (e.g.myproject-name
) - Rename the
i18n/asteroid-helloworld.desktop.h
file to user your project name (e.g.i18n/myproject-name.desktop.h
) - Rename the
asteroid-helloworld.desktop.template
file to use your project name (e.g.myproject-name.desktop.template
) - Edit the newly renamed
destkop.template
file from the previous step and change theExec=
line to your project name - Optionally, but highly recommended, change the
Icon
,X-Asteroid-Center-Color
andX-Asteroid-Outer-Color
values in that same file - Alter the functionality to suit
Note that for steps 3 and 4, use git mv
to rename the files so that your repository will reflect these changes.