Skip to content

Instantly share code, notes, and snippets.

@MMachado-uy
Last active August 20, 2019 21:57
Show Gist options
  • Save MMachado-uy/f5c6ba7038edb8e6199be4510a1221ff to your computer and use it in GitHub Desktop.
Save MMachado-uy/f5c6ba7038edb8e6199be4510a1221ff to your computer and use it in GitHub Desktop.
Entry point for the Ubuntu Setup project. Lots of personal settings, not necessarily what you need/want, but it's a jump-start.
#!/bin/bash
# Entry point for the UbuntuSetup Repo:
# github.com/MMachado-uy/ubuntuSetup
#
# Save this file in your computer and give it
# execute privileges with $ chmod +x setup.sh
#
# WARNING: This script and the scripts it calls
# uses sudo to install and set up software in
# the host machine. Use with caution.
wget -O setup.zip github.com/MMachado-uy/ubuntuSetup/archive/master.zip
if ! hash unzip &>/dev/null; then
echo -e "Unzip is required to un this script"
read -n1 -r -p "Press any key to continue or Ctrl+C to cancel..."
sudo apt update && sudo apt install unzip
fi
unzip setup.zip && rm setup.zip
cd ubuntuSetup-master
chmod +x install.sh
./install.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment