-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall-all-needed-software-latest.sh
executable file
·156 lines (123 loc) · 5.35 KB
/
install-all-needed-software-latest.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/bin/bash
#
#
# MMMMMMMMMMMMMMMMMMMMMMMMMmds+.
# MMm----::-://////////////oymNMd+`
# MMd /++ -sNMd:
# MMNso/` dMM `.::-. .-::.` .hMN:
# ddddMMh dMM :hNMNMNhNMNMNh: `NMm
# NMm dMM .NMN/-+MMM+-/NMN` dMM
# NMm dMM -MMm `MMM dMM. dMM
# NMm dMM -MMm `MMM dMM. dMM
# NMm dMM .mmd `mmm yMM. dMM
# NMm dMM` ..` ... ydm. dMM
# hMM- +MMd/-------...-:sdds dMM
# -NMm- :hNMNNNmdddddddddy/` dMM
# -dMNs-``-::::-------.`` dMM
# `/dMNmy+/:-------------:/yMMM
# ./ydNMMMMMMMMMMMMMMMMMMMMM
# \.MMMMMMMMMMMMMMMMMMM
#
#
#
##################################################################################################################
#
# Current project : Ultimate-Linux-Mint-18
#
# Source : https://github.com/erikdubois/Ultimate-Linux-Mint-18-mate
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
#
# More from Erik Dubois
#
# Aurora Conky
# at http://sourceforge.net/projects/auroraconkytheme/
# Explanation on the use of this theme can be found at
# http://erikdubois.be/category/linux/aurora-conky/
#
# Aureola Conky
# Collections of nice conky's with lua syntax
# https://github.com/erikdubois/Aureola
#
# Sardi icons
# Many different styles of icons from colourfull, monochrome, white, circle
# https://sourceforge.net/projects/sardi/
#
# Super Ultra Flat Numix Remix
# Colourfull and playfull icons
# https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix
#
# Check out the github - many more scripts for automatic installation of Linux Systems.
#
#
#
#
#
##################################################################################################################
# If the option -y has been added. It will autoinstall all. Omit if you do not want that.
##################################################################################################################
#
#
#
#
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK.
#
##################################################################################################################
##############################################################################################
# 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
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
wget https://download.sublimetext.com/sublime-text_build-3114_amd64.deb
sudo dpkg -i sublime-text_build-3114_amd64.deb
rm sublime-text_build-3114_amd64.deb
###############################################################################################
#software from 'normal' repositories
sudo apt-get install -y catfish clementine curl dropbox evolution focuswriter frei0r-plugins geary gpick
sudo apt-get install -y glances gparted hardinfo inkscape kazam
sudo apt-get install -y openshot ppa-purge radiotray screenruler screenfetch scrot shutter slurm
sudo apt-get install -y terminator thunar variety vlc vnstat winbind
sudo apt-get install -y mate-tweak
#software out of selection
#sudo apt-get install -y agave skype
#software from extra repositories
sudo apt-get install -y boot-repair plank
#software out of selection
#sudo apt-get install -y grub-customizer
###############################################################################################
# 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 breeze-cursor-theme xcursor-themes -y
sudo apt-get install vertex-theme -y
###############################################################################################
#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