-
Notifications
You must be signed in to change notification settings - Fork 4
/
preferences.sh
230 lines (186 loc) · 5.4 KB
/
preferences.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#!/usr/bin/env bash
# -*- ENCODING: UTF-8 -*-
##
## @author Raúl Caro Pastorino
## @copyright Copyright © 2018 Raúl Caro Pastorino
## @license https://wwww.gnu.org/licenses/gpl.txt
## @email public@raupulus.dev
## @web https://raupulus.dev
## @gitlab https://gitlab.com/raupulus
## @github https://github.com/raupulus
## @twitter https://twitter.com/raupulus
##
## Applied Style Guide:
## @style https://gitlab.com/raupulus/bash-guide-style
############################
## INSTRUCTIONS ##
############################
############################
## FUNCIONES ##
############################
getDistrosAvailable() {
echo -e "$RO debian$CL"
echo -e "$RO gentoo$CL"
echo -e "$RO raspbian$CL"
echo -e "$RO fedora$CL"
echo -e "$RO macos$CL"
}
getBranchAvailable() {
echo -e "$RO debian$VE → stable-testing-unstable$CL"
echo -e "$RO gentoo$VE → stable-testing$CL"
echo -e "$RO raspbian$VE → stable-testing-unstable$CL"
echo -e "$RO fedora$VE → stable$CL"
echo -e "$RO macos$VE → stable$CL"
}
setDistro() {
while [[ "$input" != 'debian' ]] &&
[[ "$input" != 'gentoo' ]] &&
[[ "$input" != 'raspbian' ]] &&
[[ "$input" != 'fedora' ]] &&
[[ "$input" != 'macos' ]]
do
clear_screen
getDistrosAvailable
## Pido elegir distribución
echo "$MY_DISTRO"
read -p "Introduce tu distribución → " input
done
MY_DISTRO="$input"
setVariableGlobal 'DISTRO' "$MY_DISTRO"
}
setBranch() {
while [[ "$input" != 'stable' ]] &&
[[ "$input" != 'testing' ]] &&
[[ "$input" != 'unstable' ]]
do
clear_screen
getBranchAvailable
## Pido elegir distribución
echo "$MY_BRANCH"
read -p "Introduce la rama → " input
done
MY_BRANCH="$input"
setVariableGlobal 'BRANCH' "$MY_BRANCH"
}
##
## Permite establecer si nos encontramos en un entorno para desarrollo o para
## producción mediante una variable global $ENV
##
setEnv() {
while true :; do
clear_screen
local descripcion='Selecciona el entorno:
1) Producción
2) Desarrollo
'
opciones "$descripcion"
echo -e "$RO"
read -p ' Acción → ' entrada
echo -e "$CL"
case ${entrada} in
1) setVariableGlobal 'ENV' "prod"
break;;
2) setVariableGlobal 'ENV' "dev"
break;;
*) ## Acción ante entrada no válida
clear_screen
echo ""
echo -e " $RO ATENCIÓN: Elección no válida$CL";;
esac
done
}
##
## Configura variables para el idioma
##
variables_lenguaje() {
if [[ "$LC_ALL" = '' ]]; then
setVariableGlobal 'LC_ALL' 'es_ES.UTF-8'
fi
if [[ "$LC_CTYPE" = '' ]]; then
setVariableGlobal 'LC_CTYPE' 'es_ES.UTF-8'
fi
if [[ "$LC_MESSAGES" = '' ]]; then
setVariableGlobal 'LC_MESSAGES' 'es_ES.UTF-8'
fi
}
vars_enviroment_displays() {
if [[ "$DPI" = '' ]]; then
setVariableGlobal 'DPI' '90'
fi
if [[ "$DISPLAY0_NAME" = '' ]]; then
setVariableGlobal 'DISPLAY0_NAME' 'HDMI-0'
fi
if [[ "$DISPLAY0_DPI" = '' ]]; then
setVariableGlobal 'DISPLAY0_DPI' '90'
fi
if [[ "$DISPLAY0_RESOLUTION" = '' ]]; then
setVariableGlobal 'DISPLAY0_RESOLUTION' '1920x1080'
fi
if [[ "$DISPLAY1_NAME" = '' ]]; then
setVariableGlobal 'DISPLAY1_NAME' 'false'
fi
if [[ "$DISPLAY1_DPI" = '' ]]; then
setVariableGlobal 'DISPLAY1_DPI' '90'
fi
if [[ "$DISPLAY1_RESOLUTION" = '' ]]; then
setVariableGlobal 'DISPLAY1_RESOLUTION' '1920x1080'
fi
if [[ "$DISPLAY2_NAME" = '' ]]; then
setVariableGlobal 'DISPLAY2_NAME' 'false'
fi
if [[ "$DISPLAY2_DPI" = '' ]]; then
setVariableGlobal 'DISPLAY2_DPI' '90'
fi
if [[ "$DISPLAY2_RESOLUTION" = '' ]]; then
setVariableGlobal 'DISPLAY2_RESOLUTION' '1920x1080'
fi
}
##
## Añado variables extras para control de programas
##
configureGlobalControlVars() {
echo -e "Estableciendo variables globales"
if [[ "$ENV" = 'prod' ]]; then
setVariableGlobal 'NODE_ENV' 'production'
fi
}
setHostName() {
echo -e "Comprobando Hostname"
if [[ $(hostname) = '' ]]; then
echo -e "Introduce Hostname"
read -p ' → ' hostname
sudo hostname -b "$hostname"
fi
}
##
## Configura las Opciones del entorno para usar el script
##
configurePreferences() {
if [[ ! -f '/etc/environment' ]]; then
sudo touch '/etc/environment'
sudo chmod 644 '/etc/environment'
fi
## Recarga variables del entorno
source '/etc/environment'
##
## Toma las variables desde el archivo .env en la raíz del script
## Esto sobreescribe otros valores existentes que hubiesen en environment
##
if [[ -f "$WORKSCRIPT/.env" ]]; then
source "$WORKSCRIPT/.env"
fi
echo -e "$VE Puedes setear tu mismo las variables en /etc/environment$CL"
echo -e "$VE También puedes usar .env en este directorio del script$CL"
if [[ "$MY_DISTRO" = '' ]]; then
setDistro
fi
if [[ "$MY_BRANCH" = '' ]]; then
setBranch
fi
if [[ "$ENV" = '' ]]; then
setEnv
fi
variables_lenguaje
vars_enviroment_displays
setHostName
}