This commit is contained in:
Fr4nz D13trich 2025-12-28 00:19:05 +01:00
parent 08982535e7
commit 5cc2a37985
2 changed files with 36 additions and 1 deletions

View file

@ -1,6 +1,40 @@
# Helium Bowser installer & updater # Helium Bowser installer & updater
## Purpose ## Purpose
This script was initially designed to just update my Helium browser but over time and interest it got more functional and universal. With "little" tinkering it should be possible to apply this script to install, update & configure many kinds of releases from source like AppImages, binaries, etc... This script was initially designed to just update my Helium browser but over time and interest it got more functional and universal. It includes functions to install, update, remove, add launcher, etc...
With "little" tinkering it should be possible to apply this script to install, update & configure many kinds of releases from source, like Debian packages, AppImages, binaries, etc...
## Usage
Help
```sh
./helium_helper.sh -h
```
### First Install
To initally install Helium browser via this script, download helium_helper.sh and make it executable:
```sh
wget https://lab.c95.org/fr4nz/helium-helper/raw/branch/main/helium_helper.sh && chmod +x helium_helper.sh
```
Run script with install parameter _-i_
```sh
./helium_helper.sh -i
```
Add alias to `.shellrc` | _optional_
```sh
./helium_helper.sh -a ### ONLY TESTED WITH zsh & bash
```
---
### Updating
**From launcher** if added
Checking for the latest version and updating can simply be done for the browser as well as the script by right clicking the app icon and choosing either update option, which will be run by `helium_launcher_update.sh`. This will backup all files that are being updated and write a log.
**Terminal**
Updating can also be done by running:
```sh
./helium_helper.sh -u ### UPDATE APP
```
```sh
./helium_helper.sh -S ### UPDATE SCRIPT
```
Since this script is interactive, it doesn't keep logs.
## Overview ## Overview
### Helium_Helper.sh ### Helium_Helper.sh
- Interactive installer, updater & configuration script - Interactive installer, updater & configuration script

View file

@ -25,6 +25,7 @@
- APP_SOURCE variable changed - APP_SOURCE variable changed
- BRANCH variable added - BRANCH variable added
- FILE_EXTENSION variable added - FILE_EXTENSION variable added
- Readme updated
## Add/To Do ## Add/To Do
- Architecture detection - Architecture detection