Skip to content

RebornOS-Team/rebornos-welcome

Repository files navigation

RebornOS Welcome Application

Discord Server GitHub GitHub release (latest by date) Release Pre-Release (Git)

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.

Useful locations

Cloning

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.

HTTPS

git clone https://github.com/RebornOS-Team/rebornos-welcome.git 

OR

SSH

git clone [email protected]:RebornOS-Team/rebornos-welcome.git

Packaging

Change to the project directory (cd crebornos-welcome) and run any of the below scripts:

  • sh packaging/setup.sh <MODE>: Builds and installs a package
  • sh packaging/build-package.sh <MODE>: Just builds a package without installing it locally
  • sh 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 package
  • sh packaging_iso/build-package.sh <MODE>: Just builds a package without installing it locally
  • sh 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 or pacman (whichever is applicable).