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

@@ -17,6 +17,7 @@ wl-clipboard
polkit-kde-agent polkit-kde-agent
xdg-desktop-portal-hyprland xdg-desktop-portal-hyprland
gnome-keyring gnome-keyring
openssh
# Pipewire # Pipewire
pipewire pipewire

10
etc/locale.conf Normal file
View File

@@ -0,0 +1,10 @@
LANG=en_US.UTF-8
LC_ADDRESS=de_DE.UTF-8
LC_IDENTIFICATION=de_DE.UTF-8
LC_MEASUREMENT=de_DE.UTF-8
LC_MONETARY=de_DE.UTF-8
LC_NAME=de_DE.UTF-8
LC_NUMERIC=de_DE.UTF-8
LC_PAPER=de_DE.UTF-8
LC_TELEPHONE=de_DE.UTF-8
LC_TIME=de_DE.UTF-8

View File

@@ -149,6 +149,18 @@ if [ ! -z "$aur_pkgs" ]; then
$helper -Sy $aur_pkgs $helper -Sy $aur_pkgs
fi 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 # TODO mic-indicator, nerd font
echo "Packages installed!" echo "Packages installed!"