forked from erikdubois/Ultimate-Linux-Mint-18-Cinnamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-all-needed-software-at-once-v3.sh
executable file
·130 lines (83 loc) · 4.45 KB
/
install-all-needed-software-at-once-v3.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
###############################################################################################
# repo for grub-customizer
# sudo add-apt-repository ppa:danielrichter2007/grub-customizer -y
# repo for numix themes
#sudo add-apt-repository ppa:numix/ppa -y
# repo for boot-repair
# sudo add-apt-repository -y ppa:yannubuntu/boot-repair
###############################################################################################
# Spotify
# 1. Add the Spotify repository signing key to be able to verify downloaded packages
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
# 2. Add the Spotify repository
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
# 3. Update list of available packages
sudo apt-get update
# 4. Install Spotify
sudo apt-get install spotify-client -y
###############################################################################################
# donwloading and installing google chrome for netflix e.g.
# echo downloading google chrome latest stable edition
rm google-chrome-stable_current_amd64.deb
echo "downloading google chrome latest stable edition"
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt-get install -y libcurl3
sudo dpkg -i google-chrome-stable_current_amd64.deb
rm google-chrome-stable_current_amd64.deb
###############################################################################################
# Downloading and installing latest sublime text 3
rm /tmp/sublime-text_build-3126_amd64.deb
wget https://download.sublimetext.com/sublime-text_build-3126_amd64.deb -O /tmp/sublime-text_build-3126_amd64.deb
sudo dpkg -i /tmp/sublime-text_build-3126_amd64.deb
rm /tmp/sublime-text_build-3126_amd64.deb
###############################################################################################
# Downloading and installing latest variety
sudo add-apt-repository ppa:peterlevi/ppa -y
sudo apt-get update
sudo apt-get install variety -y
###############################################################################################
#software from 'normal' repositories
sudo apt-get install -y adobe-flashplugin catfish clementine curl dconf-cli dropbox evolution focuswriter frei0r-plugins geary gimp gpick
sudo apt-get install -y glances gparted grsync hardinfo inkscape kazam nemo-dropbox
sudo apt-get install -y openshot pinta ppa-purge radiotray screenruler screenfetch scrot shutter slurm synapse
sudo apt-get install -y terminator thunar vlc vnstat winbind
#software out of selection
#sudo apt-get install -y agave skype
#software from extra repositories
#sudo apt-get install -y boot-repair
sudo apt-get install -y plank
#software out of selection
#sudo apt-get install -y grub-customizer
#operating specific software
sudo apt-get install nemo-compare -y
###############################################################################################
# installation of zippers and unzippers
sudo apt-get install -y p7zip-rar p7zip-full unace unrar zip unzip sharutils rar uudeview mpack arj cabextract file-roller
###############################################################################################
#themes
#sudo apt-get install numix-gtk-theme numix-icon-theme-circle -y
sudo apt-get install -y breeze-cursor-theme
#sudo apt-get install -y xcursor-themes
###############################################################################################
#ending
#mkdir $HOME/Upload
#sudo apt-get -y update
#sudo apt-get -f -y install
#sudo apt-get -y upgrade
#sudo apt-get -y autoremove
#sudo apt-get -y autoclean
echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"