Hyprland-dotfiles/.install/cleanup.sh

14 lines
520 B
Bash
Raw Normal View History

2023-12-25 09:02:36 -05:00
# ------------------------------------------------------
# Install tty login and issue
# ------------------------------------------------------
2023-12-25 09:06:09 -05:00
echo -e "${GREEN}"
figlet "Cleanup"
echo -e "${NONE}"
2023-12-25 09:02:36 -05:00
# Check for ttf-ms-fonts
if [[ $(_isInstalledPacman "ttf-ms-fonts") == 0 ]]; then
echo "The script has detected ttf-ms-fonts. This can cause conflicts with icons in Waybar."
if gum confirm "Do you want to uninstall ttf-ms-fonts?" ;then
sudo pacman --noconfirm -R ttf-ms-fonts
fi
2023-12-25 09:06:09 -05:00
fi
echo "Cleanup done."