18 lines
No EOL
316 B
Bash
18 lines
No EOL
316 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# RaveOS Setup Script
|
|
|
|
# Text Colours
|
|
bold=$(tput bold) # ${bold}
|
|
normal=$(tput sgr0) # ${normal}
|
|
yellow=$(tput setaf 3) # ${yellow}
|
|
|
|
sudo pacman -S git --noconfirm
|
|
|
|
git clone https://aur.archlinux.org/yaru.git
|
|
cd yaru
|
|
makepkg -si --noconfirm
|
|
cd -
|
|
rm -rf yaru |