15 lines
394 B
Bash
15 lines
394 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 ~/.local/share/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
|