Changed pacman.conf vars
This commit is contained in:
parent
b276220802
commit
89ee08940d
1 changed files with 13 additions and 0 deletions
13
config_changes.sh
Executable file
13
config_changes.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
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
|
Loading…
Reference in a new issue