2024-12-19 21:02:20 +00:00
|
|
|
#!/usr/bin/env bash
|
2024-12-21 19:59:13 +00:00
|
|
|
|
2024-12-20 20:05:31 +00:00
|
|
|
set -e
|
2024-12-21 19:59:13 +00:00
|
|
|
|
2024-12-19 20:51:55 +00:00
|
|
|
# RaveOS Setup Script
|
2024-12-21 19:59:13 +00:00
|
|
|
|
|
|
|
# Text Colours
|
2024-12-19 20:51:55 +00:00
|
|
|
bold=$(tput bold) # ${bold}
|
|
|
|
normal=$(tput sgr0) # ${normal}
|
|
|
|
yellow=$(tput setaf 3) # ${yellow}
|
|
|
|
|
2024-12-22 21:27:22 +00:00
|
|
|
|
2024-12-22 16:12:53 +00:00
|
|
|
|
|
|
|
git clone https://aur.archlinux.org/yaru.git
|
|
|
|
cd yaru
|
|
|
|
makepkg -si --noconfirm
|
|
|
|
cd -
|
2024-12-22 21:56:53 +00:00
|
|
|
rm -rf yaru
|