Commented out duplicated commands

This commit is contained in:
Phillip 2024-09-08 00:43:29 +01:00
parent ec3a26041f
commit 5e15f19c48

View File

@ -1,22 +1,22 @@
#!/bin/sh #!/bin/sh
# Run grub-mkconfig again to detect Windows install # Run grub-mkconfig again to detect Windows install
sudo grub-mkconfig -o /boot/grub/grub.cfg #sudo grub-mkconfig -o /boot/grub/grub.cfg
# Configure and enable UFW # Configure and enable UFW
sudo ufw default deny incoming # sudo ufw default deny incoming
sudo ufw default allow outgoing # sudo ufw default allow outgoing
sudo ufw limit ssh # sudo ufw limit ssh
sudo ufw enable # sudo ufw enable
# Update ClamAV # Update ClamAV
sudo freshclam # sudo freshclam
# Enable ClamAV and UFW to run at startup # Enable ClamAV and UFW to run at startup
sudo systemctl enable clamav-freshclam.service # sudo systemctl enable clamav-freshclam.service
sudo systemctl enable clamav-daemon.service # sudo systemctl enable clamav-daemon.service
sudo systemctl enable ufw.service # sudo systemctl enable ufw.service
# Enable SSHD now firewall has been configured # Enable SSHD now firewall has been configured
sudo systemctl enable sshd.service # sudo systemctl enable sshd.service
# Run hBlock # Run hBlock
hblock # hblock
# Install the noto fonts library # Install the noto fonts library
sudo pacman -S --noconfirm noto-fonts noto-fonts-cjk noto-fonts-emoji sudo pacman -S --noconfirm noto-fonts noto-fonts-cjk noto-fonts-emoji
# Install KDE Plasma, SDDM and essential utilities # Install KDE Plasma, SDDM and essential utilities
@ -27,8 +27,8 @@ sudo systemctl enable sddm.service
mkdir -p ~/.config/fontconfig/conf.d mkdir -p ~/.config/fontconfig/conf.d
mv install/user-fonts.conf ~/.config/fontconfig/conf.d/60-assign-preferred-fonts.conf mv install/user-fonts.conf ~/.config/fontconfig/conf.d/60-assign-preferred-fonts.conf
# Install the apparmor.d-git package from the AUR and start the service # Install the apparmor.d-git package from the AUR and start the service
yay -S apparmor.d-git # yay -S apparmor.d-git
sudo systemctl enable apparmor.service # sudo systemctl enable apparmor.service
# Prompt the user to reboot # Prompt the user to reboot
echo "Install complete, please reboot" echo "Install complete, please reboot"
# Cleanup: Remove ~/install # Cleanup: Remove ~/install