-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboot.sh
More file actions
executable file
·25 lines (19 loc) · 1.41 KB
/
boot.sh
File metadata and controls
executable file
·25 lines (19 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
ansi_art='
██████╗ ███╗ ███╗██╗ ██╗ ██████╗ ██╗██████╗
██╔═══██╗████╗ ████║██║ ██║██╔═══██╗██║██╔══██╗
█████╗██║ ██║██╔████╔██║██║ ██║██║ ██║██║██║ ██║█████╗
╚════╝██║ ██║██║╚██╔╝██║ ██╗ ██╔╝██║ ██║██║██║ ██║╚════╝
╚██████╔╝██║ ╚═╝ ██║ ╚████╔╝ ╚██████╔╝██║██████╔╝
╚═════╝ ╚═╝ ╚═╝ ╚═══╝ ╚═════╝ ╚═╝╚═════╝
1101100 110011 110011 1110100 100000 1100101
1100100 1101001 1110100 1101001 1101111 1101110'
clear
echo -e "\n$ansi_art\n"
sudo xbps-install -y git
OMVOID_REPO="${OMVOID_REPO:-galleb/omvoid}"
echo -e "\nCloning OMVOID from: https://github.com/${OMVOID_REPO}.git"
rm -rf ~/.local/share/omvoid/
git clone "https://github.com/${OMVOID_REPO}.git" ~/.local/share/omvoid >/dev/null
echo -e "\nInstallation starting..."
source ~/.local/share/omvoid/install.sh