Initial upload of scripts

This commit is contained in:
Phillip 2024-10-15 12:12:53 +01:00
parent 713867e681
commit 07787fc11c
4 changed files with 125 additions and 0 deletions

5
grub-restore.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
echo "Reinstalling GRUB"
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB
grub-mkconfig -o /boot/grub/grub.cfg
echo "GRUB has been reinstalled"

73
plasma-minimal.txt Normal file
View File

@ -0,0 +1,73 @@
ark
appmenu-gtk-module
breeze
breeze-gtk
breeze-plymouth
dolphin
dolphin-plugins
drkonqi
ffmpegthumbs
gwenview
kactivitymanagerd
kate
kde-cli-tools
kde-gtk-config
kdecoration
kdegraphics-thumbnailers
kdeplasma-addons
kgamma
kglobalacceld
kimageformats
kinfocenter
kmenuedit
konsole
kpipewire
kscreen
kscreenlocker
ksshaskpass
ksystemstats
kwallet-pam
kwayland
kwin
kwrited
layer-shell-qt
libappindicator-gtk3
libkscreen
libksysguard
libpipewire
libplasma
milou
ocean-sound-theme
oxygen
oxygen-sounds
partitionmanager
pipewire-jack
phonon-qt6-vlc
plasma-activities
plasma-activities-stats
plasma-desktop
plasma-disks
plasma-firewall
plasma-integration
plasma-nm
plasma-pa
plasma-sdk
plasma-systemmonitor
plasma-vault
plasma-workspace
plasma5support
plymouth-kcm
polkit-kde-agent
powerdevil
print-manager
qt6-imageformats
qt6-multimedia-ffmpeg
qqc2-breeze-style
sddm
sddm-kcm
spectacle
systemsettings
wacomtablet
xdg-desktop-portal-kde
xdg-desktop-portal-gtk
zimg

28
setup-desktop.sh Normal file
View File

@ -0,0 +1,28 @@
#!/bin/bash
echo "Configuring for desktop PC"
# Tweak system files for a better NVIDIA experience
echo "options nvidia NVreg_PreserveVideoMemoryAllocations=1" | sudo tee -a /lib/modprobe.d/systemd.conf > /dev/null
echo -e "\n# Force GBM backend\nGBM_BACKEND=nvidia-drm\n__GLX_VENDOR_LIBRARY_NAME=nvidia" | sudo tee -a /etc/environment > /dev/null
sudo sed -i 's/^MODULES=()/MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)/' /etc/mkinitcpio.conf
sudo sed -i 's/^GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"/GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet nvidia-drm.modeset=1 nvidia_drm.fbdev=1 nvidia.NVreg_EnableGpuFirmware=0 mem_sleep_default=deep"/' /etc/default/grub
# Amend GRUB for dual booting, set the Windows install as the selected default (for now)
sudo sed -i 's/^#GRUB_DISABLE_OS_PROBER=false/GRUB_DISABLE_OS_PROBER=false/' /etc/default/grub
sudo sed -i 's/^GRUB_DEFAULT=0/GRUB_DEFAULT=2/' /etc/default/grub
# Update GRUB so it grabs the Windows install
sudo grub-mkconfig -o /boot/grub/grub.cfg
# Improve network security
echo "Making network changes"
echo -e "# Do not act as a router\nnet.ipv4.ip_forward = 0\nnet.ipv6.conf.all.forwarding = 0\n\n# SYN flood protection\nnet.ipv4.tcp_syncookies = 1\n\n# Disable ICMP redirect\nnet.ipv4.conf.all.accept_redirects = 0\nnet.ipv4.conf.default.accept_redirects = 0\nnet.ipv4.conf.all.secure_redirects = 0\nnet.ipv4.conf.default.secure_redirects = 0\nnet.ipv6.conf.all.accept_redirects = 0\nnet.ipv6.conf.default.accept_redirects = 0\n\n# Do not send ICMP redirects\nnet.ipv4.conf.all.send_redirects = 0\nnet.ipv4.conf.default.send_redirects = 0" | sudo tee -a /etc/sysctl.d/90-network.conf > /dev/null
# Install the noto fonts library
sudo pacman -S --noconfirm --needed noto-fonts noto-fonts-cjk noto-fonts-emoji
# Install Intel microcode, NVIDIA (DKMS version) and KDE Plasma (from the package list)
# Doing this in one pacman command so we only need to rebuild the kernel once
sudo pacman -S --noconfirm --needed intel-ucode nvidia-dkms nvidia-utils lib32-nvidia-utils nvidia-settings $(curl https://arch.ptmlab.co.uk/plasma-minimal.txt)
# Now the NVIDIA driver is installed, enable services for proper suspend/resume
sudo systemctl enable nvidia-suspend.service
sudo systemctl enable nvidia-hibernate.service
sudo systemctl enable nvidia-resume.service
# Enable SDDM as the display manager
sudo systemctl enable sddm.service
# We're done, prompt for reboot
echo "Setup complete, please reboot."

19
setup-vmware.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
echo "Configuring for VMWare Fusion"
# Improve network security
echo "Making network changes"
echo -e "# Do not act as a router\nnet.ipv4.ip_forward = 0\nnet.ipv6.conf.all.forwarding = 0\n\n# SYN flood protection\nnet.ipv4.tcp_syncookies = 1\n\n# Disable ICMP redirect\nnet.ipv4.conf.all.accept_redirects = 0\nnet.ipv4.conf.default.accept_redirects = 0\nnet.ipv4.conf.all.secure_redirects = 0\nnet.ipv4.conf.default.secure_redirects = 0\nnet.ipv6.conf.all.accept_redirects = 0\nnet.ipv6.conf.default.accept_redirects = 0\n\n# Do not send ICMP redirects\nnet.ipv4.conf.all.send_redirects = 0\nnet.ipv4.conf.default.send_redirects = 0" | sudo tee -a /etc/sysctl.d/90-network.conf > /dev/null
# Install and configure VMWare drivers and utilities
sudo pacman -S --noconfirm --needed open-vm-tools
sudo cat /proc/version > /etc/arch-release
sudo systemctl enable vmware-vmblock-fuse
sudo systemctl enable vmtoolsd
sudo pacman -S --noconfirm --needed xf86-input-vmmouse xf86-video-vmware mesa
# Install the noto fonts library
sudo pacman -S --noconfirm --needed noto-fonts noto-fonts-cjk noto-fonts-emoji
# Install KDE Plasma (from the package list)
sudo pacman -S --noconfirm --needed $(curl https://arch.ptmlab.co.uk/plasma-minimal.txt)
# Enable SDDM as the display manager
sudo systemctl enable sddm.service
# We're done, prompt for reboot
echo "Setup complete, please reboot."