Added locale config and minegrub
This commit is contained in:
@@ -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
10
etc/locale.conf
Normal 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
|
||||||
12
install.sh
12
install.sh
@@ -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!"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user