Fix height on firefox

This commit is contained in:
2024-06-20 13:25:42 +01:00
parent e76f656385
commit d07bbba855
4 changed files with 13 additions and 16 deletions

View File

@@ -15,7 +15,8 @@ dialog --erase-on-exit \
"2" "Install Dotfiles" "on"\
"3" "Install GitHub CLI" "off"\
"4" "Install AI Tools" "off"\
"5" "Install MultiMC" "off" 2> main.tmp
"5" "Install MultiMC" "off"\
"6" "Enable bluetooth support" "off" 2> main.tmp
main_menu=$( cat main.tmp )
rm main.tmp
mkdir logs
@@ -118,6 +119,14 @@ for selection in $main_menu; do
} | dialog --backtitle "$BACKTITLE" --programbox "Install Minecraft (MultiMC)" 30 90
fi
if [ "$selection" = "6" ]; then
# --- ENABLE BLUETOOTH ---
{
sudo apt-get install -y blueman
} | dialog --backtitle "$BACKTITLE" --programbox "Enable Bluetooth support (blueman)" 30 90
fi
if [ "$selection" = "2" ]; then
# --- INSTALL DOTFILES ---