67eac27d79
- Make everything compatible with both Artix and Fedora - Install script is now only for Artix - Extra .zsh files are no longer dot files, makes sourcing from .zshrc easier
41 lines
1.1 KiB
Bash
Executable file
41 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(lsb_release -si)" = "Arch" ] || [ "$(lsb_release -si)" = "Artix" ]; then
|
|
echo "This script must be run on either Arch Linux or Artix Linux. Quitting..."
|
|
fi
|
|
|
|
if [ $(id -u) -ne 0 ]; then
|
|
echo "This script must be run as root. Quitting..."
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "on" ]; then
|
|
if grep "#MODULES=()" /etc/mkinitcpio.conf > /dev/null; then
|
|
echo "VFIO is already enabled. Quitting..."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Enabling VFIO..."
|
|
sed -i 's/MODULES=()/#MODULES=()/g' /etc/mkinitcpio.conf
|
|
sed -i 's/#MODULES=(vfio/MODULES=(vfio/g' /etc/mkinitcpio.conf
|
|
elif [ "$1" = "off" ]; then
|
|
if grep "#MODULES=(vfio" /etc/mkinitcpio.conf > /dev/null; then
|
|
echo "VFIO is already disabled. Quitting..."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Disabling VFIO..."
|
|
sed -i 's/#MODULES=()/MODULES=()/g' /etc/mkinitcpio.conf
|
|
sed -i 's/MODULES=(vfio/#MODULES=(vfio/g' /etc/mkinitcpio.conf
|
|
else
|
|
echo "Please run with either 'on' or 'off' as command line argument. Quitting..."
|
|
exit 1
|
|
fi
|
|
|
|
sleep 0.5
|
|
|
|
echo "Regenerating initramfs..."
|
|
mkinitcpio -P
|
|
|
|
echo "Done!"
|