12 lines
119 B
Bash
12 lines
119 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
|
||
|
# install yay
|
||
|
cd ~
|
||
|
git clone https://aur.archlinux.org/yay.git
|
||
|
cd yay
|
||
|
makepkg -si
|
||
|
cd ..
|
||
|
sudo rm -rf yay
|