From 9f63e4ed0464e823db0105a06e83a2738f0336d2 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 5 Apr 2023 09:42:23 +0200 Subject: [PATCH] Add a script for initially configuring pacman --- scripts/Arch/Config/pacman/install.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/Arch/Config/pacman/install.sh diff --git a/scripts/Arch/Config/pacman/install.sh b/scripts/Arch/Config/pacman/install.sh new file mode 100755 index 00000000..8f09488b --- /dev/null +++ b/scripts/Arch/Config/pacman/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +sudo sed -i \ + -e "/^\[options\]$/,/^\[/{" \ + -e "s/^#\?\(Color\)$/\1/;" \ + -e "/^# Misc options$/{" \ + -e "a ILoveCandy" \ + -e "};" \ + -e "}" \ + -e "/^#\?\[multilib\]$/,/^$/{ s/^#\?\(.*\)$/\1/; }" \ + /etc/pacman.conf