Added locale config and minegrub

This commit is contained in:
2023-11-08 22:44:28 +01:00
parent cd0c88ce15
commit 0571eb2357
3 changed files with 23 additions and 0 deletions

View File

@@ -149,6 +149,18 @@ if [ ! -z "$aur_pkgs" ]; then
$helper -Sy $aur_pkgs
fi
# Install minegrub
read -p "Install grub theme 'minegrub'(Y/n)?" inst
if [ "$inst" != "n" ]; then
git clone https://github.com/Lxtharia/minegrub-theme.git
cd ./minegrub-theme
sudo cp -ruv ./minegrub /boot/grub/themes/
sed -i '/^\(#\)\?GRUB_THEME/ s/.*/GRUB_THEME=XXX/' /etc/default/grub
sudo grub-mkconfig -o /boot/grub/grub.cfg
cd ..
fi
# TODO mic-indicator, nerd font
echo "Packages installed!"