Created
April 15, 2026 21:36
-
-
Save Shoozza/826b734641eaf11f61b3feb19686c71a to your computer and use it in GitHub Desktop.
fix audio steam deck desktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Adjust PipeWire's audio buffer/quantum size: | |
| mkdir -p ~/.config/pipewire/pipewire.conf.d/ | |
| vim ~/.config/pipewire/pipewire.conf.d/99-fix-stutter.conf | |
| # Paste: | |
| context.properties = { | |
| default.clock.rate = 48000 | |
| default.clock.quantum = 1024 | |
| default.clock.min-quantum = 1024 | |
| default.clock.max-quantum = 2048 | |
| } | |
| # Restart it: | |
| systemctl --user restart pipewire pipewire-pulse wireplumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment