corrected readme filename and chandged readme

This commit is contained in:
Ryan Bakkes 2021-09-25 20:46:54 +02:00
parent fbb683b4e3
commit b3af44668a
3 changed files with 87 additions and 38 deletions

82
README.md Normal file
View File

@ -0,0 +1,82 @@
# Installify
Installify is a Bash shell script to download new software and applications.
## Applications & Software
* Android Studio (TO-DO)
* Bootstrap Studio
* Chromium (TO-DO)
* Defold (TO-DO)
* Discord (TO-DO)
* Docker (TO-DO)
* Firefox
* Gcc
* Git
* Node
* NordVPN
* OBS
* PHP
* Python (TO-DO)
* Yarn
* Open-jdk
* Slack
* Spotify
* Visual Studio Code
* Xampp (TO-DO)
* ZSH (TO-DO)
* Missing any applications or software? Feel free to leave an issue behind or create a merge request with the created files :)
# Use
```console
wget -P ~/ https://git.aterve.com/Spekulaas/BashInstaller/archive/master.zip
unzip ~/master.zip
```
or with git
```console
$ git clone https://git.aterve.com/Spekulaas/BashInstaller.git
```
`cd $PATH_TO/Installify` and run the script interactively using `sudo ./install.sh [argunments]`:
* -h, -help Show a list of all commands
* -v, -version Show the current version of the application
* -d Run the install in debug mode
* -a Download all the files without the install command prompt
* -b Use bash as main terminal without the prompt
* -z Use Oh-My-Zsh as main terminal without the prompt
Example usage:
Manually select the install the files:
```console
$ sudo ./install.sh
```
Install files in debug mode:
```console
$ sudo ./install.sh -d
```
Install all files in debug mode:
```console
$ sudo ./install.sh -da
```
Install all files with Oh-My-Zsh in debug mode:
```console
$ sudo ./install.sh -daz
```
Install all files with Oh-My-Zsh:
```console
$ sudo ./install.sh -az
```
## TO-DO
Name change BashInstaller -> Installify
See applications and software tab

View File

@ -1,33 +0,0 @@
# BashInstaller
Simple Bash application installer.
## Applications & Software
* Android Studio (TO-DO)
* Bootstrap Studio
* Chromium (TO-DO)
* Defold (TO-DO)
* Discord (TO-DO)
* Docker (TO-DO)
* Firefox
* Gcc
* Git
* Node
* NordVPN
* OBS
* PHP
* Python (TO-DO)
* Yarn
* Open-jdk
* Slack
* Spotify
* Visual Studio Code
* Xampp (TO-DO)
* ZSH (TO-DO)
* Missing any applications or software? Feel free to leave an issue behind or create a merge request with the created files :)
## TO-DO
Name change BashInstaller -> Installify
See applications and software tab

View File

@ -46,15 +46,15 @@ print_help() {
# set color # set color
printf %s "$YELLOW" printf %s "$YELLOW"
cat <<'EOF' cat <<'EOF'
Usage: Sudo ./install.sh [command oprions] Usage: Sudo ./install.sh [arguments]
Command options: Arguments:
-h, -help Show a list of all commands -h, -help Show a list of all commands
-v, -version Show the current version of the application -v, -version Show the current version of the application
-d Run the install in debug mode -d Run the install in debug mode
-a Download all the files without a command prompt -a Download all the files without the install command prompt
-b Use bash as main terminal -b Use bash as main terminal without the prompt
-z Use Oh-My-Zsh as main terminal -z Use Oh-My-Zsh as main terminal without the prompt
EOF EOF
# set color to default # set color to default
printf %s "$RESET" printf %s "$RESET"