3 Commits

Author SHA1 Message Date
Siim 32984a72e2 Fixed fluff removal
Added -y to actually remove the bloat, piped the output to null, changed the update everything a bit.
2026-05-31 20:23:02 +02:00
Siim 5a50282e0e Merge pull request 'Added resample quality setting' (#3) from pipewire-conf-update into main
Reviewed-on: #3
2026-05-19 08:11:04 +02:00
Siim ccf7e28e6e Added resample quality setting 2026-05-19 08:10:30 +02:00
2 changed files with 8 additions and 5 deletions
+4 -1
View File
@@ -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
}
+4 -4
View File
@@ -21,7 +21,7 @@ function yes_or_no {
} }
echo "Removing fluff (maps, tour, etc)" echo "Removing fluff (maps, tour, etc)"
dnf remove gnome-maps gnome-weather gnome-tour gnome-calendar gnome-contacts simple-scan 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"
@@ -43,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