2025-06-02 09:41:24 +02:00
|
|
|
sudo pacman -S --needed --noconfirm base-devel
|
2025-06-02 10:34:34 +02:00
|
|
|
|
|
|
|
if ! command -v yay &>/dev/null; then
|
2025-07-07 10:28:44 -07:00
|
|
|
cd /tmp
|
2025-06-02 10:34:34 +02:00
|
|
|
git clone https://aur.archlinux.org/yay-bin.git
|
|
|
|
cd yay-bin
|
|
|
|
makepkg -si --noconfirm
|
2025-07-07 10:28:44 -07:00
|
|
|
cd -
|
2025-06-02 10:34:34 +02:00
|
|
|
rm -rf yay-bin
|
2025-07-07 10:28:44 -07:00
|
|
|
cd ~
|
2025-06-02 10:34:34 +02:00
|
|
|
fi
|
2025-07-14 18:15:48 -07:00
|
|
|
|
|
|
|
# FIXME: Temporary fix for the fact that some locations can't reach the default keyserver
|
|
|
|
if [[ ! -f "$HOME/.gnupg/gpg.conf" ]]; then
|
|
|
|
mkdir -p ~/.gnupg
|
|
|
|
echo "keyserver hkps://pgp.mit.edu" >~/.gnupg/dirmngr.conf
|
|
|
|
fi
|