15 lines
300 B
Bash
15 lines
300 B
Bash
#!/bin/sh
|
|
# run as root
|
|
pacman -Syy
|
|
pacman -Syu
|
|
|
|
# the following commands are run manually
|
|
pacman -S --needed git base-devel
|
|
git clone https://aur.archlinux.org/yay.git
|
|
cd yay
|
|
makepkg -si
|
|
|
|
# kill the beep sound
|
|
# this command needs to be saved into .bashrc or
|
|
# some startup script
|
|
sudo rmmod pcspkr
|