mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
10 lines
212 B
Bash
10 lines
212 B
Bash
#!/bin/sh
|
|
# stdin: default config
|
|
# stdout: modified config
|
|
|
|
# Enable parallel downloads
|
|
sed 's|^#ParallelDownloads\s*=.*$|ParallelDownloads = 4|'
|
|
|
|
# Include de-p1st mirror
|
|
echo 'Include = /etc/pacman.d/de-p1st'
|