mirror of
https://github.com/G2-Games/welcome.sh.git
synced 2025-04-19 13:32:53 -05:00
Update README.md
This commit is contained in:
parent
798025c9fa
commit
a2d45c4ccc
1 changed files with 9 additions and 4 deletions
13
README.md
13
README.md
|
@ -13,16 +13,20 @@ My goal with this script is to keep it simple, just a single line that gives use
|
||||||
|
|
||||||
### Installing:
|
### Installing:
|
||||||
#### Via Curl
|
#### Via Curl
|
||||||
|
<sub>Bash:</sub>
|
||||||
```
|
```
|
||||||
bash -c "$(curl -s https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh)"
|
bash -c "$(curl -s https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh)"
|
||||||
```
|
```
|
||||||
|
<sub>Zsh:</sub>
|
||||||
```
|
```
|
||||||
zsh -c "$(curl -s https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh)"
|
zsh -c "$(curl -s https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh)"
|
||||||
```
|
```
|
||||||
#### Or wget
|
#### Or wget
|
||||||
|
<sub>Bash:</sub>
|
||||||
```
|
```
|
||||||
bash -c "$(wget -q https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh -O -)"
|
bash -c "$(wget -q https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh -O -)"
|
||||||
```
|
```
|
||||||
|
<sub>Zsh:</sub>
|
||||||
```
|
```
|
||||||
zsh -c "$(wget -q https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh -O -)"
|
zsh -c "$(wget -q https://raw.githubusercontent.com/G2-Games/welcome.sh/main/install.sh -O -)"
|
||||||
```
|
```
|
||||||
|
@ -45,9 +49,10 @@ To configure settings, open `welcome.sh` in your text editor of choice and go to
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
#=========SETUP========#
|
#=========SETUP========#
|
||||||
# Select which parts you want active by commenting them out
|
# Select which parts you want active by commenting them out #
|
||||||
# For example, on a desktop, disabling the battery message is a good idea
|
# For example, on a desktop, disabling the battery message #
|
||||||
# You can also re order them to change how they display!
|
# is a good idea. You can also re order them to change how #
|
||||||
|
# they display! #
|
||||||
|
|
||||||
flatpakupd="off" # Check for flatpak updates, this slows startup down A LOT
|
flatpakupd="off" # Check for flatpak updates, this slows startup down A LOT
|
||||||
rechargenotif="off" # Notify that you should recharge if below 15%
|
rechargenotif="off" # Notify that you should recharge if below 15%
|
||||||
|
@ -55,7 +60,7 @@ rechargenotif="off" # Notify that you should recharge if below 15%
|
||||||
welcome
|
welcome
|
||||||
greeting
|
greeting
|
||||||
clock
|
clock
|
||||||
battery
|
#battery
|
||||||
updates #< This makes startup slower
|
updates #< This makes startup slower
|
||||||
echo # Properly line break at the end
|
echo # Properly line break at the end
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue