-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ubuntudevenvinstall.sh
65 lines (41 loc) · 1.82 KB
/
ubuntudevenvinstall.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
#!/bin/bash
# Download deb files from list and add them to downloads folder
wget -P downloads --content-disposition -i apps.txt
# installing all deb files with a loop
for PROGRAM in downloads/*.deb
do
sudo dpkg -i ${PROGRAM}
done
# Install missing dependencies
sudo apt install -y -f
############################################################################################
# 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 && echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
# Plank repository
sudo add-apt-repository -y ppa:ricotz/docky #
# Adapta theme repository
sudo add-apt-repository -y ppa:tista/adapta
# Krita repository
sudo add-apt-repository -y ppa:kritalime/ppa
# Albert repository
sudo add-apt-repository -y ppa:nilarimogard/webupd8
# KDE Connect repository
sudo add-apt-repository -y ppa:vikoadi/ppa
############################################################################################
# Custom installations
#Flat-Remix icon theme
cd /tmp
git clone https://github.com/daniruiz/Flat-Remix
mkdir -p ~/.icons
mv "Flat-Remix/Flat Remix" ~/.icons
############################################################################################
# Install important apps from default and added repositories
sudo apt update
sudo apt install -f -y git spotify-client gnome-tweak-tool plank adapta-gtk-theme virtualbox filezilla krita shutter albert kdeconnect indicator-kdeconnect
############################################################################################
# Updating in case there is any outdated apps
sudo apt update
sudo apt -y upgrade
sudo apt -y autoremove
# Removing downloads folder
sudo rm -rf downloads