You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
462 B
24 lines
462 B
#!/bin/bash
|
|
|
|
install_defaults_raspberry()
|
|
{
|
|
color_start "themeIndication"
|
|
echo "-----------------------------------"
|
|
echo "Default installations for Raspberry"
|
|
echo "-----------------------------------"
|
|
color_stop
|
|
sleep 1
|
|
for i in "${!default_installs_raspberry[@]}";
|
|
do
|
|
currentProg=${default_installs_raspberry[$i]}
|
|
|
|
if [ $( check_installed $currentProg ) -eq 0 ]
|
|
then
|
|
install_prog $currentProg
|
|
else
|
|
skip_prog $currentProg
|
|
fi
|
|
done
|
|
}
|
|
|