InstaTout/gnome_install.sh

12 lines
466 B
Bash
Raw Normal View History

# Copy over unstable repo stuff
cp ./files/unstable.list /etc/apt/sources.list.d/unstable.list
2022-03-24 03:25:50 -04:00
cp ./files/preferences /etc/apt/preferences
# Install gnome
apt-get update &&\
2022-03-24 21:05:52 -04:00
apt -t unstable install -y gnome-session gnome-shell gnome-backgrounds gnome-applets gnome-control-center mutter gjs gnome-core gnome-tweaks libc6-i386 libgl1 libglx0 libglx-mesa0 power-profiles-daemon
gsettings set org.gnome.mutter workspaces-only-on-primary false
2022-03-24 02:04:09 -04:00
echo "gnome installed"