mirror of
https://github.com/JonasunderscoreJones/ArchSystemSetup.git
synced 2025-10-22 19:19:20 +02:00
added logger messages
This commit is contained in:
parent
f500cc2581
commit
cedfd1d50a
1 changed files with 14 additions and 0 deletions
14
syssetup.sh
14
syssetup.sh
|
@ -15,18 +15,32 @@ logger() {
|
|||
echo -e "\e[32m$message\e[0m"
|
||||
}
|
||||
|
||||
# welcome message
|
||||
logger "Welcome to the system setup script!"
|
||||
logger "This script will install a bunch of packages, flatpaks, gnome extensions, and more."
|
||||
|
||||
# Keep the sudo session alive
|
||||
logger "Requesting sudo session..."
|
||||
while true; do sudo -v; sleep 60; done &
|
||||
|
||||
# run the commands
|
||||
logger "Installing Chaotic AUR..."
|
||||
install_chaoticaur
|
||||
logger "Installing yay AUR helper..."
|
||||
install_yay_aur
|
||||
logger "Installing system packages..."
|
||||
install_packages
|
||||
logger "Installing flatpaks..."
|
||||
install_flatpaks
|
||||
logger "Installing firefox theme..."
|
||||
install_firefox_theme
|
||||
logger "Installing sdkman..."
|
||||
install_sdkman
|
||||
logger "Installing ghcup..."
|
||||
install_ghcup
|
||||
logger "Removing unwanted gnome apps..."
|
||||
remove_packages
|
||||
logger "Installing gnome extensions..."
|
||||
install_gnome_extensions
|
||||
|
||||
install_yay_aur() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue