mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 08:41:36 +00:00
10 lines
200 B
Bash
10 lines
200 B
Bash
#!/bin/bash
|
|
|
|
cd /home/"$USER"/ || exit
|
|
git clone https://aur.archlinux.org/yay.git
|
|
cd /home/"$USER"/yay || exit
|
|
makepkg -si --noconfirm
|
|
cd /home/"$USER"/ || exit
|
|
rm -rf yay
|
|
echo "install yay success"
|