From 35740d340f3e7f1a131467f12a42004bc450b2f3 Mon Sep 17 00:00:00 2001 From: Krzeszny Date: Tue, 21 Oct 2025 13:42:28 +0000 Subject: [PATCH] an attempt at indentation --- content/docs/resonite/_index.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/content/docs/resonite/_index.md b/content/docs/resonite/_index.md index 5df2ade..3c7c098 100644 --- a/content/docs/resonite/_index.md +++ b/content/docs/resonite/_index.md @@ -54,21 +54,21 @@ Add the following to Resonite's Launch Options: For most users, switching to ALSA **will break all audio** in Resonite unless you configure your audio server, PipeWire, to support your hardware's sample rates. If this happens: -1. Locate the directory or create it if it doesn't exist: -```$HOME/.config/pipewire/pipewire.conf.d/``` -(Remember: The ~/.config folder is often hidden in file browsers) + 1. Locate the directory or create it if it doesn't exist: + ```$HOME/.config/pipewire/pipewire.conf.d/``` + (Remember: The ~/.config folder is often hidden in file browsers) + + 2. Create the file `01-sample-rates.conf` in that folder. The full path should be + ```$HOME/.config/pipewire/pipewire.conf.d/01-sample-rates.conf``` -2. Create the file `01-sample-rates.conf` in that folder. The full path should be -```$HOME/.config/pipewire/pipewire.conf.d/01-sample-rates.conf``` + 3. Paste the following content into the file to define supported sample rates, and save it: + ``` + context.properties = { + default.clock.allowed-rates = [ 44100 48000 88200 96000 ] + default.clock.rate = 48000 + } -3. Paste the following content into the file to define supported sample rates, and save it: -``` -context.properties = { -default.clock.allowed-rates = [ 44100 48000 88200 96000 ] -default.clock.rate = 48000 -} - -``` + ``` If that doesn't work, you can try forcing the other drivers by specifying `pipewire` or `pulseaudio` instead of `alsa` in the above launch arguments.