RebornOS Welcome is the application that displays on the RebornOS ISO and on first use of RebornOS after installation. It contains basic links to help get started on RebornOS as a new user.
In order to download the source code to your local computer for testing, or for development, you can clone from the remote repository using either SSH, or HTTPS. Below are instructions on how to do so using GitHub hosted code as remote.
git clone https://github.com/RebornOS-Team/rebornos-welcome.git
OR
git clone git@github.com:RebornOS-Team/rebornos-welcome.git
Change to the project directory (cd crebornos-welcome
) and run any of the below scripts:
sh packaging/setup.sh <MODE>
: Builds and installs a packagesh packaging/build-package.sh <MODE>
: Just builds a package without installing it locallysh packaging/install-package.sh <MODE>
: Just installs a package locally, except if no built package is detected, a package is built.
OR
sh packaging_iso/setup.sh <MODE>
: Builds and installs a packagesh packaging_iso/build-package.sh <MODE>
: Just builds a package without installing it locallysh packaging_iso/install-package.sh <MODE>
: Just installs a package locally, except if no built package is detected, a package is built.
where <MODE>
can be one of the below
1. local
: Selects rebornos-welcome-local from the local project that you have cloned already.
2. git
: Selects rebornos-welcome-git from the latest git commit.
3. stable
: Selects rebornos-welcome from the git tag corresponding to the pkgver
specified in the PKGBUILD. If pkgver=0.1.2
, then the git tag v0.1.2
is used for packaging.
Note: Any additional parameters passed to the above scripts are automatically sent to
makepkg
orpacman
(whichever is applicable).