From dd065fb340216f6cb7c8dd85d85a9c543956f614 Mon Sep 17 00:00:00 2001 From: i-c-u-p <96894903+i-c-u-p@users.noreply.github.com> Date: Wed, 27 Apr 2022 09:13:19 +0000 Subject: [PATCH] cleanup paralleldownloads regex because the pattern ends with ".*" using "$" is pointless --- easy-arch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy-arch.sh b/easy-arch.sh index d6cfcfe..4f15cde 100755 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -430,7 +430,7 @@ EOF # Pacman eye-candy features. print "Enabling colours, animations, and parallel in pacman." -sed -i 's/#Color/Color\nILoveCandy/;s/^#ParallelDownloads.*$/ParallelDownloads = 10/' /mnt/etc/pacman.conf +sed -i 's/#Color/Color\nILoveCandy/;s/^#ParallelDownloads.*/ParallelDownloads = 10/' /mnt/etc/pacman.conf # Enabling various services. print "Enabling Reflector, automatic snapshots, BTRFS scrubbing and systemd-oomd."