···8484 /// Show the currently signed-in account.
8585 Whoami,
86868787- /// Push your local audio settings (EQ + DSP chain) to your AT Protocol repo.
8787+ /// Push your local audio settings (EQ + DSP chain) to your PDS.
8888 ///
8989 /// Uploads the settings from `settings.toml` to the `fm.atradio.audio.settings`
9090 /// record so they sync to the web app and your other devices. Requires sign-in.
9191 Push,
92929393- /// Pull your audio settings (EQ + DSP chain) from your AT Protocol repo.
9393+ /// Pull your audio settings (EQ + DSP chain) from your PDS.
9494 ///
9595 /// Downloads the `fm.atradio.audio.settings` record and writes it into your
9696 /// local `settings.toml`, replacing the local DSP chain. Requires sign-in.
···423423 }
424424 let settings = crate::settings::Settings::load(&config.session_path);
425425 atproto.put_audio_settings(&settings.audio()).await?;
426426- println!("✓ Pushed your audio settings to your AT Protocol repo.");
426426+ println!("✓ Pushed your audio settings to your PDS.");
427427 Ok(())
428428}
429429···440440 settings.save(&config.session_path);
441441 println!("✓ Pulled your audio settings into settings.toml.");
442442 }
443443- None => println!("No audio settings record found in your AT Protocol repo."),
443443+ None => println!("No audio settings record found in your PDS."),
444444 }
445445 Ok(())
446446}