5 lines
390 B
Bash
Executable file
5 lines
390 B
Bash
Executable file
#!/bin/bash
|
|
pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com &&
|
|
pacman-key --lsign-key 3056513887B78AEB &&
|
|
pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' --noconfirm &&
|
|
echo -e "[chaotic-aur]\nInclude = /etc/pacman.d/chaotic-mirrorlist" >> /etc/pacman.conf
|