This commit is contained in:
Danneman92 2022-08-26 03:02:27 +01:00
parent a6d41fab1c
commit 064d497356
3 changed files with 3 additions and 2 deletions

View File

@ -22,6 +22,7 @@ konsole
kscreen
kvantum-qt5
kwayland-integration
kwalletmanager
layer-shell-qt
milou
okular

View File

@ -39,7 +39,7 @@ echo -ne "
Setting up $iso mirrors for faster downloads
-------------------------------------------------------------------------
"
reflector -a 48 -l 20 --sort rate --save /etc/pacman.d/mirrorlist
reflector -a 48 --connection-timeout 1 --download-timeout 2 -l 50 -p rsync --sort rate --save /etc/pacman.d/mirrorlist
mkdir /mnt &>/dev/null # Hiding error message if any
echo -ne "
-------------------------------------------------------------------------

View File

@ -136,7 +136,7 @@ PLYMOUTH_THEME="arch-glow" # can grab from config later if we allow selection
mkdir -p /usr/share/plymouth/themes
echo 'Installing Plymouth theme...'
cp -rf ${PLYMOUTH_THEMES_DIR}/${PLYMOUTH_THEME} /usr/share/plymouth/themes
if [[ $FS == "luks"]]; then
if [[ $FS == "luks" ]]; then
sed -i 's/HOOKS=(base udev*/& plymouth/' /etc/mkinitcpio.conf # add plymouth after base udev
sed -i 's/HOOKS=(base udev \(.*block\) /&plymouth-/' /etc/mkinitcpio.conf # create plymouth-encrypt after block hook
else