diff --git a/scripts/system-setup.sh b/scripts/system-setup.sh index 78a6bfa..c305ccb 100755 --- a/scripts/system-setup.sh +++ b/scripts/system-setup.sh @@ -98,6 +98,12 @@ sudo systemctl enable --now docker sudo docker run hello-world banner bottom "installed docker" +# install misc +banner top "installing other packages" +sudo dnf install -y micro btop fastfetch +curl -fsSL https://vykar.borgbase.com/install.sh | sh +banner bottom "installed other packages" + # install (& configure) fish banner top "installing fish" sudo dnf install -y fish @@ -108,15 +114,9 @@ banner bottom "installed fish" # install (& configure) cron banner top "installing cron" -sudo dnf install cronie +sudo dnf install -y cronie sudo systemctl enable --now crond banner bottom "installed cron" -# install misc -banner top "installing other packages" -sudo dnf install -y micro btop fastfetch -curl -fsSL https://vykar.borgbase.com/install.sh | sh -banner bottom "installed other packages" - # finish echo -e "done! please log out and log back in\n"