forked from SimonDevelop/scripts-auto-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-install-extra-software.sh
executable file
·105 lines (59 loc) · 2.91 KB
/
2-install-extra-software.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
#!/bin/bash
set -e
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Simon Micheneau inspired of Erik Dubois
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# Atom
sh software/install-atom.sh
###############################################################################################
# Discord
sh software/install-discord.sh
###############################################################################################
# Docker
sh software/install-docker.sh
###############################################################################################
# Redshift
sh software/install-redshift.sh
###############################################################################################
# Gitkraken
sh software/install-gitkraken.sh
###############################################################################################
# Google Chrome
sh software/install-brave.sh
###############################################################################################
# Insomnia
sh software/install-insomnia.sh
###############################################################################################
# Nodejs
sh software/install-nodejs.sh
###############################################################################################
# OBS
sh software/install-obs.sh
###############################################################################################
# Peek
sh software/install-peek.sh
###############################################################################################
# Spice-Up
sh software/install-spice-up.sh
###############################################################################################
# System Back
sh software/install-systemback.sh
###############################################################################################
# Teamviewer
sh software/install-teamviewer.sh
#############################################################################################
# Ubuntu Cleaner
sh software/install-ubuntu-cleaner.sh
###############################################################################################
# Virtualbox
sh software/install-virtual-box.sh
###############################################################################################
echo "################################################################"
echo "################## extra software installed ##################"
echo "################################################################"