-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·33 lines (24 loc) · 1.05 KB
/
setup.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
#!/bin/bash
cwd="$(echo "$(pwd)")"
# Colors and styles
source "$cwd/styles/styles.sh"
# GLobal definitions
source "$cwd/definitions.sh"
# Utilitaries
source "$cwd/utils/utils.sh"
# Interface functions
source "$cwd/interface/interface.sh"
# Core functionalities
source "$cwd/core/core.sh"
###################################################################################################
###################################################################################################
# #
# Main program #
# #
###################################################################################################
###################################################################################################
InstallEssentialPackages
preparePackages
prepareSystemConfig $1
prepareGit
exit 1;