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.
8 lines
390 B
8 lines
390 B
#!/bin/bash
|
|
|
|
echo 'deb http://download.opensuse.org/repositories/home:/stevenpusser/Debian_10/ /' | sudo tee /etc/apt/sources.list.d/home:stevenpusser.list
|
|
curl -fsSL http://download.opensuse.org/repositories/home:stevenpusser/Debian_10/Release.key | apt-key add
|
|
apt-get update >>$OUTPUT 2>&1
|
|
apt-get -y install palemoon >>$OUTPUT 2>&1
|
|
|
|
rm -Rf /usr/share/icons/gnome/256x256 >>$OUTPUT 2>&1
|
|
|