13 lines
347 B
Bash
Executable file
13 lines
347 B
Bash
Executable file
pacman_vars() {
|
|
#Activate and change number of parallel downloads to 200
|
|
sed -i "s/^#ParallelDownloads =.*/ParallelDownloads = 200/" /etc/pacman.conf
|
|
#Enable color
|
|
sed -i "s/^#Color/Color/" /etc/pacman.conf
|
|
#Enable multilib repo
|
|
sed -i "/\[multilib\]/,/Include/"'s/^#//' /etc/pacman.conf
|
|
}
|
|
|
|
init() {
|
|
pacman_vars
|
|
}
|
|
init
|