-
Notifications
You must be signed in to change notification settings - Fork 5
/
1-install-apt-packages.sh
executable file
·48 lines (41 loc) · 1.62 KB
/
1-install-apt-packages.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
#!/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.
#
##################################################################################################################
sudo apt update
sudo apt install -y git
sudo apt install -y simplescreenrecorder
sudo apt install -y chromium
sudo apt install -y sublime-text
sudo apt install -y telegram-desktop
sudo apt install -y thunar
sudo apt install -y meld
sudo apt install -y xfce4-terminal
sudo apt install -y obs-studio
sudo apt install -y dconf-editor
sudo apt install -y gimp
sudo apt install -y inkscape
sudo apt install -y vlc
sudo apt install -y virtualbox
sudo apt install -y rxvt-unicode
sudo apt install -y flameshot
sudo apt install -y dmenu
sudo apt install -y variety
#Installed via keys and repo add
sudo apt install -y vivaldi-stable
sudo apt install -y google-chrome-stable
sudo apt install -y brave-browser
sudo apt install -y atom
sudo apt install -y code
sudo apt install -y spotify-client
echo "################################################################"
echo "################### Installation Done ######################"
echo "################################################################"