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.

36 lines
712 B

#!/bin/bash
source $MAIN_DIR/programs/dmenu/dmenu.sh
install_defaults_debian()
{
color_start "themeIndication"
echo "--------------------------------"
echo "Default installations for Debian"
echo "--------------------------------"
color_stop
sleep 1
for i in "${!default_installs_debian[@]}";
do
currentProg=${default_installs_debian[$i]}
if [ $( check_installed $currentProg ) -eq 0 ]
then
install_prog $currentProg
else
skip_prog $currentProg
fi
done
}
install_customs_debian()
{
color_start "themeIndication"
echo "--------------------------------"
echo "Custom installations for Debian"
echo "--------------------------------"
color_stop
sleep 1
dmenu_install_debian
}