diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2024-03-08 23:17:28 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2024-03-08 23:17:28 -0500 |
| commit | 674c1bfd4ba541fa88958915cd882959a7fa9aab (patch) | |
| tree | b471d5a31054aa27a0c9a1ec19680f36e65a9eb7 /distro/fedora.sh | |
| parent | 31693c2549df08784dd28e41c7efbe9426be2378 (diff) | |
| download | dotfiles-674c1bfd4ba541fa88958915cd882959a7fa9aab.tar.gz dotfiles-674c1bfd4ba541fa88958915cd882959a7fa9aab.tar.xz | |
Fix plymouth switch. Move mpd install to after the setup of rpmfusion and multimedia.
Diffstat (limited to 'distro/fedora.sh')
| -rwxr-xr-x | distro/fedora.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/distro/fedora.sh b/distro/fedora.sh index 95c4de0..f0461c9 100755 --- a/distro/fedora.sh +++ b/distro/fedora.sh @@ -89,7 +89,6 @@ yum -y install \ pamixer \ sipcalc \ wireguard-tools \ - mpd \ vlc \ @@ -107,6 +106,8 @@ dnf -y groupupdate multimedia --setop="install_weak_deps=False" --exclude=Packag dnf -y groupupdate sound-and-video +yum -y install mpd + dnf -y install intel-media-driver dnf -y swap mesa-va-drivers mesa-va-drivers-freeworld @@ -145,7 +146,7 @@ dnf -y install brave-browser plymouth_changed=0 case $PLYMOUTH in -on|yes|1) +off|no|0) fn="/etc/default/grub" bak="$fn.$(date +%s)" cp "$fn" "$bak" @@ -160,7 +161,7 @@ on|yes|1) echo 'omit_dracutmodules+=" plymouth "' > /etc/dracut.conf.d/01-no-plymouth.conf ;; -off|no|0) +on|yes|1) fn="/etc/default/grub" bak="$fn.$(date +%s)" cp "$fn" "$bak" |
