diff --git a/Fedora-Workstation-38.sh b/Fedora-Workstation-38.sh index 1562091..b4560f8 100644 --- a/Fedora-Workstation-38.sh +++ b/Fedora-Workstation-38.sh @@ -131,6 +131,10 @@ sudo dnf -y install gnome-console git-core gnome-shell-extension-appindicator gn # Enable auto TRIM sudo systemctl enable fstrim.timer +# Setup fwupd +echo 'UriSchemes=file;https' | sudo tee -a /etc/fwupd/fwupd.conf +sudo systemctl restart fwupd + ### Differentiating bare metal and virtual installs # Installing tuned first here because virt-what is 1 of its dependencies anyways @@ -166,11 +170,4 @@ if [ "$virt_type" = "" ]; then sudo dracut -f fi -# Setup fwupd -if [ "$virt_type" = "" ]; then - sudo dnf install fwupd -y - echo 'UriSchemes=file;https' | sudo tee -a /etc/fwupd/fwupd.conf - sudo systemctl restart fwupd -fi - output "The script is done. You can also remove gnome-terminal since gnome-console will replace it."