Browse Source

Artix support

main
Yigit Colakoglu 4 years ago
parent
commit
1b9bf5f0ab
3 changed files with 22 additions and 2 deletions
  1. +6
    -2
      arch-setup/arch-setup.sh
  2. +1
    -0
      arch-setup/packages.base.arch
  3. +15
    -0
      arch-setup/packages.base.artix

+ 6
- 2
arch-setup/arch-setup.sh View File

@ -32,7 +32,7 @@ clear
# Run cfdisk for manual partitioning
cfdisk $device
[ ! $(command -v partprobe) = "" ] && partprobe
sleep 2
lsblk $device
echo -n "Are you satisfied with your partitions?(Y/n): "
read satisfied
@ -163,7 +163,11 @@ mkdir /mnt/sys/install
curl https://raw.githubusercontent.com/theFr1nge/dotfiles/main/arch-setup/packages.minimal > /mnt/sys/install/packages.minimal
curl https://raw.githubusercontent.com/theFr1nge/dotfiles/main/arch-setup/packages.full > /mnt/sys/install/packages.full
curl https://raw.githubusercontent.com/theFr1nge/dotfiles/main/arch-setup/packages.base > /mnt/sys/install/packages.base
if [ "$distro" = "1" ];then
curl https://raw.githubusercontent.com/theFr1nge/dotfiles/main/arch-setup/packages.base.arch > /mnt/sys/install/packages.base
else
curl https://raw.githubusercontent.com/theFr1nge/dotfiles/main/arch-setup/packages.base.artix > /mnt/sys/install/packages.base
fi
curl https://raw.githubusercontent.com/theFr1nge/dotfiles/main/arch-setup/chroot.sh > /mnt/sys/install/chroot.sh
chmod +x /mnt/sys/install/chroot.sh


arch-setup/packages.base → arch-setup/packages.base.arch View File


+ 15
- 0
arch-setup/packages.base.artix View File

@ -0,0 +1,15 @@
networkmanager-openrc
efibootmgr
refind
python
git
vim
xorg
xorg-server
xorg-xinit
xorg-apps
xf86-video-intel
sudo
cronie
wget
curl

Loading…
Cancel
Save