forked from helmuthdu/aui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sharedfuncs
executable file
·658 lines (647 loc) · 20.5 KB
/
sharedfuncs
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
#!/bin/bash
#-------------------------------------------------------------------------------
#Created by helmuthdu mailto: helmuthdu[at]gmail[dot]com
#Contribution: flexiondotorg
#-------------------------------------------------------------------------------
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <http://www.gnu.org/licenses/>.
#-------------------------------------------------------------------------------
# Run this script after your first boot with archlinux (as root)
#GLOBAL VARIABLES {{{
checklist=( 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 )
# COLORS {{{
Bold=$(tput bold)
Underline=$(tput sgr 0 1)
Reset=$(tput sgr0)
# Regular Colors
Red=$(tput setaf 1)
Green=$(tput setaf 2)
Yellow=$(tput setaf 3)
Blue=$(tput setaf 4)
Purple=$(tput setaf 5)
Cyan=$(tput setaf 6)
White=$(tput setaf 7)
# Bold
BRed=${Bold}${Red}
BGreen=${Bold}${Green}
BYellow=${Bold}${Yellow}
BBlue=${Bold}${Blue}
BPurple=${Bold}${Purple}
BCyan=${Bold}${Cyan}
BWhite=${Bold}${White}
#}}}
# PROMPT {{{
prompt1="Enter your option: "
prompt2="Enter n° of options (ex: 1 2 3 or 1-3): "
prompt3="You have to manually enter the following commands, then press ${BYellow}ctrl+d${Reset} or type ${BYellow}exit${Reset}:"
#}}}
# EDITOR {{{
AUTOMATIC_MODE=0
if [[ -f /usr/bin/vim ]]; then
EDITOR="vim"
elif [[ -z $EDITOR ]]; then
EDITOR="nano"
fi
#}}}
# DESKTOP ENVIRONMENT{{{
CINNAMON=0
GNOME=0
KDE=0
#}}}
# MOUNTPOINTS {{{
EFI_MOUNTPOINT="/boot"
ROOT_MOUNTPOINT="/dev/sda1"
BOOT_MOUNTPOINT="/dev/sda"
MOUNTPOINT="/mnt"
#}}}
ARCHI=`uname -m` # ARCHITECTURE
UEFI=0
LVM=0
LUKS=0
LUKS_DISK="sda2"
AUR=`echo -e "(${BPurple}aur${Reset})"`
EXTERNAL=`echo -e "(${BYellow}external${Reset})"`
AUI_DIR=`pwd` #CURRENT DIRECTORY
[[ $1 == -v || $1 == --verbose ]] && VERBOSE_MODE=1 || VERBOSE_MODE=0 # VERBOSE MODE
LOG="${AUI_DIR}/`basename ${0}`.log" # LOG FILE
[[ -f $LOG ]] && rm -f $LOG
PKG=""
PKG_FAIL="${AUI_DIR}/`basename ${0}`_fail_install.log"
[[ -f $PKG_FAIL ]] && rm -f $PKG_FAIL
XPINGS=0 # CONNECTION CHECK
SPIN="/-\|" #SPINNER POSITION
AUTOMATIC_MODE=0
TRIM=0
#}}}
#COMMON FUNCTIONS {{{
error_msg() { #{{{
local _msg="${1}"
echo -e "${_msg}"
exit 1
} #}}}
cecho() { #{{{
echo -e "$1"
echo -e "$1" >>"$LOG"
tput sgr0;
} #}}}
ncecho() { #{{{
echo -ne "$1"
echo -ne "$1" >>"$LOG"
tput sgr0
} #}}}
spinny() { #{{{
echo -ne "\b${SPIN:i++%${#SPIN}:1}"
} #}}}
progress() { #{{{
ncecho " ";
while true; do
kill -0 $pid &> /dev/null;
if [[ $? == 0 ]]; then
spinny
sleep 0.25
else
ncecho "\b\b";
wait $pid
retcode=$?
echo -ne "$pid's retcode: $retcode" >> $LOG
if [[ $retcode == 0 ]] || [[ $retcode == 255 ]]; then
cecho success
else
cecho failed
echo -e "$PKG" >> $PKG_FAIL
tail -n 15 $LOG
fi
break
fi
done
} #}}}
check_boot_system() { #{{{
if [[ "$(cat /sys/class/dmi/id/sys_vendor)" == 'Apple Inc.' ]] || [[ "$(cat /sys/class/dmi/id/sys_vendor)" == 'Apple Computer, Inc.' ]]; then
modprobe -r -q efivars || true # if MAC
else
modprobe -q efivarfs # all others
fi
if [[ -d "/sys/firmware/efi/" ]]; then
## Mount efivarfs if it is not already mounted
if [[ -z $(mount | grep /sys/firmware/efi/efivars) ]]; then
mount -t efivarfs efivarfs /sys/firmware/efi/efivars
fi
UEFI=1
echo "UEFI Mode detected"
else
UEFI=0
echo "BIOS Mode detected"
fi
}
#}}}
check_trim() { #{{{
[[ -n $(hdparm -I /dev/sda | grep TRIM 2> /dev/null) ]] && TRIM=1
}
#}}}
check_root() { #{{{
if [[ "$(id -u)" != "0" ]]; then
error_msg "ERROR! You must execute the script as the 'root' user."
fi
} #}}}
check_user() { #{{{
if [[ "$(id -u)" == "0" ]]; then
error_msg "ERROR! You must execute the script as a normal user."
fi
} #}}}
check_archlinux() { #{{{
if [[ ! -e /etc/arch-release ]]; then
error_msg "ERROR! You must execute the script on Arch Linux."
fi
} #}}}
check_hostname() { #{{{
if [[ `echo ${HOSTNAME} | sed 's/ //g'` == "" ]]; then
error_msg "ERROR! Hostname is not configured."
fi
} #}}}
check_pacman_blocked() { #{{{
if [[ -f /var/lib/pacman/db.lck ]]; then
error_msg "ERROR! Pacman is blocked. \nIf not running remove /var/lib/pacman/db.lck."
fi
} #}}}
check_domainname() { #{{{
local _domainname=`echo ${HOSTNAME} | cut -d'.' -f2- | sed 's/ //g'`
# no domain name. Keep looking...
if [[ "${_domainname}" == "" ]]; then
_domainname=`grep domain /etc/resolv.conf | sed 's/domain //g' | sed 's/ //g'`
fi
# not founded...
if [[ "${_domainname}" == "" ]]; then
error_msg "ERROR! Domain name is not configured."
fi
} #}}}
check_connection(){ #{{{
XPINGS=$(( $XPINGS + 1 ))
connection_test() {
ping -q -w 1 -c 1 `ip r | grep default | awk 'NR==1 {print $3}'` &> /dev/null && return 1 || return 0
}
WIRED_DEV=`ip link | grep "ens\|eno\|enp" | awk '{print $2}'| sed 's/://' | sed '1!d'`
WIRELESS_DEV=`ip link | grep wlp | awk '{print $2}'| sed 's/://' | sed '1!d'`
if connection_test; then
print_warning "ERROR! Connection not Found."
print_info "Network Setup"
local _connection_opts=("Wired Automatic" "Wired Manual" "Wireless" "Configure Proxy" "Skip")
PS3="$prompt1"
select CONNECTION_TYPE in "${_connection_opts[@]}"; do
case "$REPLY" in
1)
systemctl start dhcpcd@${WIRED_DEV}.service
break
;;
2)
systemctl stop dhcpcd@${WIRED_DEV}.service
read -p "IP Address: " IP_ADDR
read -p "Submask: " SUBMASK
read -p "Gateway: " GATEWAY
ip link set ${WIRED_DEV} up
ip addr add ${IP_ADDR}/${SUBMASK} dev ${WIRED_DEV}
ip route add default via ${GATEWAY}
$EDITOR /etc/resolv.conf
break
;;
3)
wifi-menu ${WIRELESS_DEV}
break
;;
4)
read -p "Enter your proxy e.g. protocol://adress:port: " OPTION
export http_proxy=$OPTION
export https_proxy=$OPTION
export ftp_proxy=$OPTION
echo "proxy = $OPTION" > ~/.curlrc
break
;;
5)
break
;;
*)
invalid_option
;;
esac
done
if [[ $XPINGS -gt 2 ]]; then
print_warning "Can't establish connection. exiting..."
exit 1
fi
[[ $REPLY -ne 5 ]] && check_connection
fi
} #}}}
check_vga() { #{{{
# Determine video chipset - only Intel, ATI and nvidia are supported by this script
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Detecting video chipset "
local _vga=`lspci | grep VGA | tr "[:upper:]" "[:lower:]"`
local _vga_length=`lspci | grep VGA | wc -l`
if [[ -n $(dmidecode --type 1 | grep VirtualBox) ]]; then
cecho Virtualbox
VIDEO_DRIVER="virtualbox"
elif [[ -n $(dmidecode --type 1 | grep VMware) ]]; then
cecho VMware
VIDEO_DRIVER="vmware"
elif [[ $_vga_length -eq 2 ]] && [[ -n $(echo ${_vga} | grep "nvidia") || -f /sys/kernel/debug/dri/0/vbios.rom ]]; then
cecho Bumblebee
VIDEO_DRIVER="bumblebee"
elif [[ -n $(echo ${_vga} | grep "nvidia") || -f /sys/kernel/debug/dri/0/vbios.rom ]]; then
cecho Nvidia
read_input_text "Install NVIDIA proprietary driver" $BETTER_VIDEO_DRIVER
if [[ $OPTION == y ]]; then
VIDEO_DRIVER="nvidia"
else
VIDEO_DRIVER="nouveau"
fi
elif [[ -n $(echo ${_vga} | grep "advanced micro devices") || -f /sys/kernel/debug/dri/0/radeon_pm_info || -f /sys/kernel/debug/dri/0/radeon_sa_info ]]; then
cecho AMD/ATI
read_input_text "Install AMDGPU driver" $BETTER_VIDEO_DRIVER
if [[ $OPTION == y ]]; then
VIDEO_DRIVER="amdgpu"
else
VIDEO_DRIVER="ati"
fi
elif [[ -n $(echo ${_vga} | grep "intel corporation") || -f /sys/kernel/debug/dri/0/i915_capabilities ]]; then
cecho Intel
VIDEO_DRIVER="intel"
else
cecho VESA
VIDEO_DRIVER="vesa"
fi
OPTION="y"
[[ $VIDEO_DRIVER == intel || $VIDEO_DRIVER == vesa ]] && read -p "Confirm video driver: $VIDEO_DRIVER [Y/n]" OPTION
if [[ $OPTION == n ]]; then
read -p "Type your video driver [ex: sis, fbdev, modesetting]: " VIDEO_DRIVER
fi
} #}}}
read_input() { #{{{
if [[ $AUTOMATIC_MODE -eq 1 ]]; then
OPTION=$1
else
read -p "$prompt1" OPTION
fi
} #}}}
read_input_text() { #{{{
if [[ $AUTOMATIC_MODE -eq 1 ]]; then
OPTION=$2
else
read -p "$1 [y/N]: " OPTION
echo ""
fi
OPTION=`echo "$OPTION" | tr '[:upper:]' '[:lower:]'`
} #}}}
read_input_options() { #{{{
local line
local packages
if [[ $AUTOMATIC_MODE -eq 1 ]]; then
array=("$1")
else
read -p "$prompt2" OPTION
array=("$OPTION")
fi
for line in ${array[@]/,/ }; do
if [[ ${line/-/} != $line ]]; then
for ((i=${line%-*}; i<=${line#*-}; i++)); do
packages+=($i);
done
else
packages+=($line)
fi
done
OPTIONS=("${packages[@]}")
} #}}}
print_line() { #{{{
printf "%$(tput cols)s\n"|tr ' ' '-'
} #}}}
print_title() { #{{{
clear
print_line
echo -e "# ${Bold}$1${Reset}"
print_line
echo ""
} #}}}
print_info() { #{{{
#Console width number
T_COLS=`tput cols`
echo -e "${Bold}$1${Reset}\n" | fold -sw $(( $T_COLS - 18 )) | sed 's/^/\t/'
} #}}}
print_warning() { #{{{
T_COLS=`tput cols`
echo -e "${BYellow}$1${Reset}\n" | fold -sw $(( $T_COLS - 1 ))
} #}}}
print_danger() { #{{{
T_COLS=`tput cols`
echo -e "${BRed}$1${Reset}\n" | fold -sw $(( $T_COLS - 1 ))
} #}}}
start_module() { #{{{
modprobe $1
} #}}}
add_module() { #{{{
for module in $1; do
#check if the name of the module can be the same of the module or the given name
[[ $# -lt 2 ]] && local _module_name="$module" || local _module_name="$2"
local _has_module=`cat /etc/modules-load.d/${_module_name}.conf 2>&1 | grep $module`
[[ -z $_has_module ]] && echo "$module" >> /etc/modules-load.d/${_module_name}.conf
start_module "$module"
done
} #}}}
add_repository() { #{{{
local _repo=${1}
local _url=${2}
[[ -n ${3} ]] && local _siglevel="\nSigLevel = ${3}" || local _siglevel=""
local _check_repo=`grep -F "${_repo}" /etc/pacman.conf`
if [[ -z $_check_repo ]]; then
echo -e "\n[${_repo}]${_siglevel}\nServer = ${_url}" >> /etc/pacman.conf
system_update
fi
} #}}}
check_multilib(){ #{{{
# this option will avoid any problem with packages install
if [[ $ARCHI == x86_64 ]]; then
local _has_multilib=`grep -n "\[multilib\]" /etc/pacman.conf | cut -f1 -d:`
if [[ -z $_has_multilib ]]; then
echo -e "\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
echo -e '\nMultilib repository added into pacman.conf file'
else
sed -i "${_has_multilib}s/^#//" /etc/pacman.conf
local _has_multilib=$(( ${_has_multilib} + 1 ))
sed -i "${_has_multilib}s/^#//" /etc/pacman.conf
fi
fi
} #}}}
add_key() { #{{{
pacman-key -r $1
pacman-key --lsign-key $1
} #}}}
add_key_user() { #{{{
su - ${username} -c "gpg --recv-keys --keyserver $1"
} #}}}
pacman_key(){ #{{{
if [[ ! -d /etc/pacman.d/gnupg ]]; then
print_title "PACMAN KEY - https://wiki.archlinux.org/index.php/pacman-key"
print_info "Pacman uses GnuPG keys in a web of trust model to determine if packages are authentic."
package_install "haveged"
haveged -w 1024
pacman-key --init
pacman-key --populate archlinux
pkill haveged
package_remove "haveged"
fi
} #}}}
add_line() { #{{{
local _add_line=${1}
local _filepath=${2}
local _has_line=`grep -ci "${_add_line}" ${_filepath} 2>&1`
[[ $_has_line -eq 0 ]] && echo "${_add_line}" >> ${_filepath}
} #}}}
replace_line() { #{{{
local _search=${1}
local _replace=${2}
local _filepath=${3}
local _filebase=`basename ${3}`
sed -e "s/${_search}/${_replace}/" ${_filepath} > /tmp/${_filebase} 2>"$LOG"
if [[ ${?} -eq 0 ]]; then
mv /tmp/${_filebase} ${_filepath}
else
cecho "failed: ${_search} - ${_filepath}"
fi
} #}}}
update_early_modules() { #{{{
local _new_module=${1}
local _current_modules=`egrep ^MODULES= /etc/mkinitcpio.conf`
if [[ -n ${_new_module} ]]; then
# Determine if the new module is already listed.
local _exists=`echo ${_current_modules} | grep ${_new_module}`
if [ $? -eq 1 ]; then
source /etc/mkinitcpio.conf
if [[ -z ${MODULES} ]]; then
_new_moduleS="${_new_module}"
else
_new_moduleS="${MODULES} ${_new_module}"
fi
replace_line "MODULES=\"${MODULES}\"" "MODULES=\"${_new_moduleS}\"" /etc/mkinitcpio.conf
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Rebuilding init "
mkinitcpio -p linux >>"$LOG" 2>&1 &
pid=$!;progress $pid
fi
fi
} #}}}
is_package_installed() { #{{{
#check if a package is already installed
for PKG in $1; do
pacman -Q $PKG &> /dev/null && return 0;
done
return 1
} #}}}
checkbox() { #{{{
#display [X] or [ ]
[[ "$1" -eq 1 ]] && echo -e "${BBlue}[${Reset}${Bold}X${BBlue}]${Reset}" || echo -e "${BBlue}[ ${BBlue}]${Reset}";
} #}}}
checkbox_package() { #{{{
#check if [X] or [ ]
is_package_installed "$1" && checkbox 1 || checkbox 0
} #}}}
aui_download_packages() { #{{{
for PKG in $1; do
#exec command as user instead of root
su - ${username} -c "
[[ ! -d aui_packages ]] && mkdir aui_packages
cd aui_packages
curl -o ${PKG}.tar.gz https://aur.archlinux.org/cgit/aur.git/snapshot/${PKG}.tar.gz
tar zxvf ${PKG}.tar.gz
rm ${PKG}.tar.gz
cd ${PKG}
makepkg -csi --noconfirm
"
done
} #}}}
aur_package_install() { #{{{
su - ${username} -c "sudo -v"
#install package from aur
for PKG in $1; do
if ! is_package_installed "${PKG}" ; then
if [[ $AUTOMATIC_MODE -eq 1 ]]; then
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Installing ${AUR} ${Bold}${PKG}${Reset} "
su - ${username} -c "${AUR_PKG_MANAGER} --noconfirm -S ${PKG}" >>"$LOG" 2>&1 &
pid=$!;progress $pid
else
su - ${username} -c "${AUR_PKG_MANAGER} --noconfirm -S ${PKG}"
fi
else
if [[ $VERBOSE_MODE -eq 0 ]]; then
cecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Installing ${AUR} ${Bold}${PKG}${Reset} success"
else
echo -e "Warning: ${PKG} is up to date --skipping"
fi
fi
done
} #}}}
package_install() { #{{{
#install packages using pacman
if [[ $AUTOMATIC_MODE -eq 1 || $VERBOSE_MODE -eq 0 ]]; then
for PKG in ${1}; do
local _pkg_repo=`pacman -Sp --print-format %r ${PKG} | uniq | sed '1!d'`
case $_pkg_repo in
"core")
_pkg_repo="${BRed}${_pkg_repo}${Reset}"
;;
"extra")
_pkg_repo="${BYellow}${_pkg_repo}${Reset}"
;;
"community")
_pkg_repo="${BGreen}${_pkg_repo}${Reset}"
;;
"multilib")
_pkg_repo="${BCyan}${_pkg_repo}${Reset}"
;;
esac
if ! is_package_installed "${PKG}" ; then
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Installing (${_pkg_repo}) ${Bold}${PKG}${Reset} "
pacman -S --noconfirm --needed ${PKG} >>"$LOG" 2>&1 &
pid=$!;progress $pid
else
cecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Installing (${_pkg_repo}) ${Bold}${PKG}${Reset} exists "
fi
done
else
pacman -S --needed ${1}
fi
} #}}}
package_remove() { #{{{
#remove package
for PKG in ${1}; do
if is_package_installed "${PKG}" ; then
if [[ $AUTOMATIC_MODE -eq 1 || $VERBOSE_MODE -eq 0 ]]; then
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Removing ${Bold}${PKG}${Reset} "
pacman -Rcsn --noconfirm ${PKG} >>"$LOG" 2>&1 &
pid=$!;progress $pid
else
pacman -Rcsn ${PKG}
fi
fi
done
} #}}}
system_update() { #{{{
pacman -Sy
} #}}}
npm_install() { #{{{
#install packages using pacman
npm install -g $1
} #}}}
gem_install() { #{{{
#install packages using pacman
for PKG in ${1}; do
sudo -u ${username} gem install -V $PKG
done
} #}}}
contains_element() { #{{{
#check if an element exist in a string
for e in "${@:2}"; do [[ $e == $1 ]] && break; done;
} #}}}
config_xinitrc() { #{{{
#create a xinitrc file in home user directory
cp -fv /etc/X11/xinit/xinitrc /home/${username}/.xinitrc
echo -e "exec $1" >> /home/${username}/.xinitrc
chown -R ${username}:users /home/${username}/.xinitrc
} #}}}
invalid_option() { #{{{
print_line
echo "Invalid option. Try another one."
pause_function
} #}}}
pause_function() { #{{{
print_line
if [[ $AUTOMATIC_MODE -eq 0 ]]; then
read -e -sn 1 -p "Press enter to continue..."
fi
} #}}}
menu_item() { #{{{
#check if the number of arguments is less then 2
[[ $# -lt 2 ]] && _package_name="$1" || _package_name="$2";
#list of chars to remove from the package name
local _chars=("Ttf-" "-bzr" "-hg" "-svn" "-git" "-stable" "-icon-theme" "Gnome-shell-theme-" "Gnome-shell-extension-");
#remove chars from package name
for char in ${_chars[@]}; do _package_name=`echo ${_package_name^} | sed 's/'$char'//'`; done
#display checkbox and package name
echo -e "$(checkbox_package "$1") ${Bold}${_package_name}${Reset}"
} #}}}
mainmenu_item() { #{{{
#if the task is done make sure we get the state
if [ $1 == 1 -a "$3" != "" ]; then
state="${BGreen}[${Reset}$3${BGreen}]${Reset}"
fi
echo -e "$(checkbox "$1") ${Bold}$2${Reset} ${state}"
} #}}}
system_ctl() { #{{{
local _action=${1}
local _object=${2}
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} systemctl ${_action} ${_object} "
systemctl ${_action} ${_object} >> "$LOG" 2>&1
pid=$!;progress $pid
}
#}}}
arch_chroot() { #{{{
arch-chroot $MOUNTPOINT /bin/bash -c "${1}"
}
#}}}
run_as_user() { #{{{
sudo -H -u ${username} ${1}
}
#}}}
add_user_to_group() { #{{{
local _user=${1}
local _group=${2}
if [[ -z ${_group} ]]; then
error_msg "ERROR! 'add_user_to_group' was not given enough parameters."
fi
ncecho " ${BBlue}[${Reset}${Bold}X${BBlue}]${Reset} Adding ${Bold}${_user}${Reset} to ${Bold}${_group}${Reset} "
groupadd ${_group} >>"$LOG" 2>&1 &
gpasswd -a ${_user} ${_group} >>"$LOG" 2>&1 &
pid=$!;progress $pid
} #}}}
setlocale() { #{{{
local _locale_list=(`cat /etc/locale.gen | grep UTF-8 | sed 's/\..*$//' | sed '/@/d' | awk '{print $1}' | uniq | sed 's/#//g'`);
PS3="$prompt1"
echo "Select locale:"
select LOCALE in "${_locale_list[@]}"; do
if contains_element "$LOCALE" "${_locale_list[@]}"; then
LOCALE_UTF8="${LOCALE}.UTF-8"
break
else
invalid_option
fi
done
}
#}}}
settimezone() { #{{{
local _zones=(`timedatectl list-timezones | sed 's/\/.*$//' | uniq`)
PS3="$prompt1"
echo "Select zone:"
select ZONE in "${_zones[@]}"; do
if contains_element "$ZONE" "${_zones[@]}"; then
local _subzones=(`timedatectl list-timezones | grep ${ZONE} | sed 's/^.*\///'`)
PS3="$prompt1"
echo "Select subzone:"
select SUBZONE in "${_subzones[@]}"; do
if contains_element "$SUBZONE" "${_subzones[@]}"; then
break
else
invalid_option
fi
done
break
else
invalid_option
fi
done
} #}}}
#}}}