sunhat/install.sh

15 lines
394 B
Bash
Raw Normal View History

2024-05-26 18:21:30 -05:00
echo -e "\e[32mINSTALLING OMAKUB\e[0m"
2024-05-25 15:52:00 -05:00
2024-05-26 18:21:30 -05:00
# Needed for all installers
sudo apt update -y
sudo apt install -y curl git
2024-05-25 15:52:00 -05:00
2024-05-26 18:21:30 -05:00
# Run installers
for script in ~/.local/share/omakub/install/*.sh; do source $script; done
2024-05-26 17:51:46 -05:00
2024-05-26 18:21:30 -05:00
# Reboot to pickup changes
2024-05-26 21:13:22 -05:00
read -p "Ready to reboot the system for all settings to take effect? [Y/n]: " response
if [[ -z "$response" || "$response" =~ ^[Yy]$ ]]; then
2024-05-26 17:51:46 -05:00
sudo reboot
fi