[OLD ARCHIVE] Scripts for full Arch Install
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ArchScripts/gnomesetup.sh

53 lines
902 B

#!/usr/bin/env bash
echo
echo "Installing Base System"
echo
PKGS=(
# --- XORG
'xorg'
'xorg-drivers'
'xterm'
'xorg-server'
'xorg-apps'
'xorg-xinit'
'xorg-xinput'
'xorg-twm'
'xorg-xclock'
'xf86-input-vmmouse'
'xf86-video-vmware'
'mesa'
# --- Desktop
'gnome'
# --- Login manager
'sddm'
# --- Networking
'dialog'
'network-manager-applet'
'dhclient'
'libsecret'
'fail2ban'
'ufw'
# --- Audio
'pipewire'
'wireplumber'
'pipewire-pulse'
'pipewire-alsa'
'pavucontrol'
)
for PKG in "${PKGS[@]}"; do
echo "INSTALLING: ${PKG}"
sudo pacman -S "$PKG" --noconfirm --needed
done
sudo systemctl enable sddm.service
echo
echo "Done! Please Reboot & Run software.sh"
echo