diff --git a/boot-dev.sh b/boot-dev.sh new file mode 100644 index 0000000..b848178 --- /dev/null +++ b/boot-dev.sh @@ -0,0 +1,23 @@ +set -e + +ascii_art='________ __ ___. +\_____ \ _____ _____ | | ____ _\_ |__ + / | \ / \\__ \ | |/ / | \ __ \ +/ | \ Y Y \/ __ \| <| | / \_\ \ +\_______ /__|_| (____ /__|_ \____/|___ / + \/ \/ \/ \/ \/ +' + +echo -e "$ascii_art" +echo "=> Omakub is for fresh Ubuntu 24.04 installations only!" +echo -e "\nBegin installation (or abort with ctrl+c)..." + +sudo apt-get update >/dev/null +sudo apt-get install -y git >/dev/null + +echo "Cloning Omakub..." +rm -rf ~/.local/share/omakub +git clone https://github.com/basecamp/omakub.git ~/.local/share/omakub >/dev/null + +echo "Installation starting..." +source ~/.local/share/omakub/install.sh diff --git a/boot.sh b/boot.sh new file mode 100644 index 0000000..7ba7fe8 --- /dev/null +++ b/boot.sh @@ -0,0 +1,23 @@ +set -e + +ascii_art='________ __ ___. +\_____ \ _____ _____ | | ____ _\_ |__ + / | \ / \\__ \ | |/ / | \ __ \ +/ | \ Y Y \/ __ \| <| | / \_\ \ +\_______ /__|_| (____ /__|_ \____/|___ / + \/ \/ \/ \/ \/ +' + +echo -e "$ascii_art" +echo "=> Omakub is for fresh Ubuntu 24.04 installations only!" +echo -e "\nBegin installation (or abort with ctrl+c)..." + +sudo apt-get update >/dev/null +sudo apt-get install -y git >/dev/null + +echo "Cloning stable Omakub..." +rm -rf ~/.local/share/omakub +git clone -b stable https://github.com/basecamp/omakub.git ~/.local/share/omakub >/dev/null + +echo "Installation starting..." +source ~/.local/share/omakub/install.sh