Compare commits
5 Commits
8fb2800179
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 32984a72e2 | |||
| 5a50282e0e | |||
| ccf7e28e6e | |||
| 7ccff3ac13 | |||
| ece517d3b4 |
+4
-1
@@ -1,4 +1,7 @@
|
|||||||
context.properties = {
|
context.properties = {
|
||||||
#default.clock.rate = 48000
|
#default.clock.rate = 48000
|
||||||
default.clock.allowed-rates = [ 44100, 48000, 88200, 96000, 176400, 192000 ]
|
default.clock.allowed-rates = [ 44100, 48000, 88200, 96000, 176400, 192000 ]
|
||||||
}
|
}
|
||||||
|
stream.properties = {
|
||||||
|
resample.quality = 14
|
||||||
|
}
|
||||||
|
|||||||
+11
-9
@@ -20,6 +20,9 @@ function yes_or_no {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo "Removing fluff (maps, tour, etc)"
|
||||||
|
dnf remove -y gnome-maps gnome-weather gnome-tour gnome-calendar gnome-contacts simple-scan &> /dev/null
|
||||||
|
|
||||||
|
|
||||||
echo "adding RPM fusion repos & updating DNF"
|
echo "adding RPM fusion repos & updating DNF"
|
||||||
# Get the free repository (most stuff you need)
|
# Get the free repository (most stuff you need)
|
||||||
@@ -40,9 +43,9 @@ dnf install -y nushell &> /dev/null
|
|||||||
|
|
||||||
# Update everything so it all plays nice together
|
# Update everything so it all plays nice together
|
||||||
echo "Updating everything..."
|
echo "Updating everything..."
|
||||||
dnf group upgrade core -y &> /dev/null
|
dnf update --refresh -y &> /dev/null
|
||||||
dnf check-update &> /dev/null
|
#dnf check-update &> /dev/null
|
||||||
dnf update -y &> /dev/null
|
#dnf update -y &> /dev/null
|
||||||
|
|
||||||
###Firmware updates
|
###Firmware updates
|
||||||
# See what can be updated
|
# See what can be updated
|
||||||
@@ -103,16 +106,15 @@ dnf install -y ffmpeg-libs libva libva-utils openh264 gstreamer1-plugin-openh264
|
|||||||
dnf config-manager --set-enabled fedora-cisco-openh264 &> /dev/null
|
dnf config-manager --set-enabled fedora-cisco-openh264 &> /dev/null
|
||||||
dnf update -y &> /dev/null
|
dnf update -y &> /dev/null
|
||||||
|
|
||||||
|
###Fix BT headsets
|
||||||
|
sed -i "$ a AutoConnect=true" /etc/bluetooth/main.conf
|
||||||
|
sed -i "$ a MultiProfile=multiple" /etc/bluetooth/main.conf
|
||||||
|
|
||||||
|
|
||||||
###Archive support
|
###Archive support
|
||||||
echo "Installing archive support"
|
echo "Installing archive support"
|
||||||
dnf install -y p7zip p7zip-plugins unrar &> /dev/null
|
dnf install -y p7zip p7zip-plugins unrar &> /dev/null
|
||||||
|
|
||||||
###MS fonts
|
|
||||||
echo "Installing MS fonts"
|
|
||||||
dnf install -y curl cabextract xorg-x11-font-utils fontconfig &> /dev/null
|
|
||||||
rpm -i --nodigest --nosignature https://downloads.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm &> /dev/null
|
|
||||||
fc-cache -fv &> /dev/null
|
|
||||||
|
|
||||||
###AppImage support
|
###AppImage support
|
||||||
echo "Adding AppImage support"
|
echo "Adding AppImage support"
|
||||||
dnf install -y fuse fuse-libs &> /dev/null
|
dnf install -y fuse fuse-libs &> /dev/null
|
||||||
|
|||||||
Reference in New Issue
Block a user