mirror of
https://github.com/G2-Games/welcome.sh.git
synced 2025-04-19 13:32:53 -05:00
Added toggle for update checker
This commit is contained in:
parent
316cc6fda8
commit
36870bc04e
2 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,7 @@ greetings=("Welcome" "Greetings" "Hello" "Hi") # Add your own greetings!
|
||||||
randgreeting="off" #< Turn the random greetings on (eg. "Hello <user>, Hi <user>")
|
randgreeting="off" #< Turn the random greetings on (eg. "Hello <user>, Hi <user>")
|
||||||
twelvehour="on" #< Switch between 12 and 24 hour time (eg. 8:00 PM vs 20:00)
|
twelvehour="on" #< Switch between 12 and 24 hour time (eg. 8:00 PM vs 20:00)
|
||||||
rechargenotif="off" #< Notify that you should recharge if below 15%
|
rechargenotif="off" #< Notify that you should recharge if below 15%
|
||||||
|
updatecheck="on" #< Check for all updates, slows startup a bit
|
||||||
flatpakupd="off" #< Check for flatpak updates, this slows startup down A LOT
|
flatpakupd="off" #< Check for flatpak updates, this slows startup down A LOT
|
||||||
goodgreeting="on" #< Display greetings like "Good afternoon," else "It's afternoon"
|
goodgreeting="on" #< Display greetings like "Good afternoon," else "It's afternoon"
|
||||||
displaydate="off" #< Unused so far
|
displaydate="off" #< Unused so far
|
||||||
|
|
|
@ -210,6 +210,7 @@ greetings=("Welcome" "Greetings" "Hello" "Hi") # Add your own greetings!
|
||||||
randgreeting="off" #< Turn the random greetings on (eg. "Hello <user>, Hi <user>")
|
randgreeting="off" #< Turn the random greetings on (eg. "Hello <user>, Hi <user>")
|
||||||
twelvehour="on" #< Switch between 12 and 24 hour time (eg. 8:00 PM vs 20:00)
|
twelvehour="on" #< Switch between 12 and 24 hour time (eg. 8:00 PM vs 20:00)
|
||||||
rechargenotif="off" #< Notify that you should recharge if below 15%
|
rechargenotif="off" #< Notify that you should recharge if below 15%
|
||||||
|
updatecheck="on" #< Check for general updates
|
||||||
flatpakupd="off" #< Check for flatpak updates, this slows startup down A LOT
|
flatpakupd="off" #< Check for flatpak updates, this slows startup down A LOT
|
||||||
goodgreeting="on" #< Display greetings like "Good afternoon," else "It's afternoon"
|
goodgreeting="on" #< Display greetings like "Good afternoon," else "It's afternoon"
|
||||||
|
|
||||||
|
@ -219,5 +220,5 @@ welcome
|
||||||
greeting
|
greeting
|
||||||
clock
|
clock
|
||||||
battery
|
battery
|
||||||
updates
|
if [ "$updatecheck" = "on" ]; then updates; fi
|
||||||
echo # Properly line break at the end
|
echo # Properly line break at the end
|
||||||
|
|
Loading…
Reference in a new issue