> ## Documentation Index
> Fetch the complete documentation index at: https://driftsociety.help/llms.txt
> Use this file to discover all available pages before exploring further.

# Other Questions

> Other questions that are not main / breaking questions or problems

<AccordionGroup>
  <Accordion title="How do i turn off my car music/radio">
    Open your main menu by pressing escape, go to settings, audio, then turn
    down "music volume" or change the "radio station" to off
  </Accordion>
</AccordionGroup>

<script
  dangerouslySetInnerHTML={{
__html: `
(function() {
  let clickedAccordion = null;
  
  document.addEventListener('click', function(e) {
    const summary = e.target.closest('summary');
    if (summary) {
      clickedAccordion = summary.parentElement;
      
      // Wait for the accordion state to settle
      setTimeout(() => {
        const allAccordions = document.querySelectorAll('details');
        
        allAccordions.forEach(accordion => {
          if (accordion !== clickedAccordion && accordion.hasAttribute('open')) {
            accordion.removeAttribute('open');
          }
        });
        
        clickedAccordion = null;
      }, 100);
    }
  });
})();
`,
}}
/>
