-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.sh
executable file
·29 lines (22 loc) · 1004 Bytes
/
utility.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/bash
echo "Adding Universe and Multiverse"
add-apt-repository -y universe
add-apt-repository -y multiverse
echo "Adding chrome repo"
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
echo "Adding repo for ubuntu-tweak"
#add-apt-repository ppa:trebelnik-stefina/ubuntu-tweak
echo "Adding repo for sublime text"
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
echo "Adding repo for variety"
add-apt-repository -r ppa:peterlevi/ppa
add-apt-repository -y ppa:peterlevi/ppa
echo "Updating Cache"
apt-get update
apt-get -y upgrade
echo "Removing apport"
apt-get remove apport
echo "Installing basic utilities"
apt-get install -y google-chrome-stable variety variety-slideshow sublime-text