mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-14 20:39:22 +01:00
33 lines
702 B
Bash
Executable File
33 lines
702 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Installing some packages to help this script"
|
|
apt-get -y install apt-cacher-ng mesa-utils aptitude
|
|
|
|
echo "Adding repositories..."
|
|
|
|
# Steam Desktop Environment
|
|
apt-add-repository ppa:thor27-gmail/steam-desktop
|
|
|
|
# RuneScape
|
|
apt-add-repository ppa:hikariknight/unix-runescape-client
|
|
|
|
# WebKit
|
|
#apt-add-repository ppa:webkit-team
|
|
|
|
# Midori
|
|
apt-add-repository ppa:midori/ppa
|
|
|
|
# Y-PPA-Manager
|
|
ppa:webupd8team/y-ppa-manager
|
|
|
|
# Wesnoth Development PPA
|
|
ppa:rhonda/wesnoth-devel
|
|
|
|
echo "Repositories added. Updating package cache..."
|
|
|
|
apt-get -y update
|
|
|
|
echo "Installing and running launchpad-getkeys to avoid missing GPG keys..."
|
|
apt-get -y install launchpad-getkeys
|
|
launchpad-getkeys
|