-
Notifications
You must be signed in to change notification settings - Fork 1
/
others
executable file
·53 lines (27 loc) · 1.2 KB
/
others
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
#!/bin/bash
printf "%s \n" "The scripts for installing programs for 'Quick Start', by Mr CaT"
sudo apt-get update
printf "%s \n" "Installing GIT..."
sudo apt-get install git
printf "%s \n" "Installing VLC Media player..."
sudo apt-get install vlc
printf "%s \n" "Installing Synaptic..."
sudo apt-get install synaptic
printf "%s \n" "Installing Pulse Audio Equalizer..."
sudo apt-add-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install pulseaudio-equalizer
printf "%s \n" "Installing Telegram Desktop..."
sudo add-apt-repository ppa:atareao/telegram
sudo apt-get update
sudo apt-get install telegram
printf "%s \n" "Installing Chromium Browser..."
sudo apt-get install chromium-browser
printf "%s \n" "Installing Discord..."
wget https://discordapp.com/api/download?platform=linux&format=deb -O discord.deb
sudo dpkg -i discord.deb
printf "%s \n" "Installing Sublime Text 3..."
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
printf "%s \n" "-------------------------------------------------------------------" "The script had been written by Mr CaT" "Special thanks to Mr CaT" "Mr CaT in telegram: @mrcat323"