From ae19469f2a6cc1f7de867f074bb7695ea042679d Mon Sep 17 00:00:00 2001 From: futile Date: Sat, 18 Jul 2026 21:27:14 +0100 Subject: [PATCH] i think i'm retarded --- scripts/system-setup.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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"