diff --git a/setup-desktop.sh b/setup-desktop.sh index 56e3c8b..3814b1a 100644 --- a/setup-desktop.sh +++ b/setup-desktop.sh @@ -15,3 +15,9 @@ user=$(getent passwd 1000 | awk -F: '{ print $1}') # Echo the user into the sudoers file echo "$user ALL=(ALL:ALL) ALL" >> /etc/sudoers +# Install Apps +sudo apt install git curl -yy + +echo "-------------------------------------------------" +echo "Setup complete." +echo "-------------------------------------------------" diff --git a/setup-server.sh b/setup-server.sh index 2b4fb16..d08bb28 100644 --- a/setup-server.sh +++ b/setup-server.sh @@ -24,6 +24,9 @@ sudo apt install ufw sudo ufw allow ssh sudo ufw enable +# Install Apps +sudo apt install git curl -yy + echo "-------------------------------------------------" echo "Setup complete." echo "-------------------------------------------------" \ No newline at end of file