1
0

no more multilib

This commit is contained in:
Deven Blake 2021-05-14 18:54:54 -04:00
parent 4ef0ca5e2d
commit 6d349011ca
2 changed files with 0 additions and 13 deletions

View File

@ -14,8 +14,6 @@ mkdir -p $HOME/bin # executables
mkdir -p $HOME/src # source code mkdir -p $HOME/src # source code
if [ $1 = "arch" ]; then if [ $1 = "arch" ]; then
sudo bash arch_enable-multilib.sh
sudo pacman -S $(cat packages/all packages/*arch_pacman*) sudo pacman -S $(cat packages/all packages/*arch_pacman*)
bash arch_yay.sh bash arch_yay.sh
@ -25,8 +23,6 @@ if [ $1 = "arch" ]; then
# you can undo this with pacman -S sudo # you can undo this with pacman -S sudo
elif [ $1 = "artix" ]; then elif [ $1 = "artix" ]; then
sudo bash arch_enable-multilib.sh
sudo pacman -S $(cat packages/all packages/*artix_pacman*) sudo pacman -S $(cat packages/all packages/*artix_pacman*)
bash arch_yay.sh bash arch_yay.sh

View File

@ -1,9 +0,0 @@
#!/bin/sh
# must be run as root
if [ $1 = "artix" ]; then
printf '[multilib]\nInclude = /etc/pacman.d/mirrorlist-arch\n' >>/etc/pacman.conf
else
printf '[multilib]\nInclude = /etc/pacman.d/mirrorlist\n' >>/etc/pacman.conf
fi