PortValhalla/scripts/Arch/Software/GNOME/install.sh

9 lines
151 B
Bash
Raw Normal View History

2023-04-03 09:18:37 +00:00
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE" "$USER";
else
pacman --noconfirm -Syu gnome
systemctl enable gdm;
fi;