sunhat/install.sh
David Heinemeier Hansson 63a73b9ed1 No longer accurate
2024-05-26 19:46:50 -07:00

15 lines
382 B
Bash

echo -e "\e[32mINSTALLING OMAKUB\e[0m"
# Needed for all installers
sudo apt update -y
sudo apt install -y curl git
# Run installers
for script in ~/.omakub/install/*.sh; do source $script; done
# Reboot to pickup changes
read -p "Ready to reboot the system for all settings to take effect? [Y/n]: " response
if [[ -z "$response" || "$response" =~ ^[Yy]$ ]]; then
sudo reboot
fi