Skip to content

Commit

Permalink
renamed audio setup file.
Browse files Browse the repository at this point in the history
updated docs path.
  • Loading branch information
AlvinSchiller authored Feb 1, 2024
1 parent a33c25c commit 0b5b5da
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion documentation/developers/coreapps.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ See [Best practice procedure](../builders/configuration.md#best-practice-procedu

### Audio

**Scriptname:** [setup_audio_sink.sh](../../installation/components/setup_audio_sink.sh)
**Scriptname:** [setup_configure_audio.sh](../../installation/components/setup_configure_audio.sh)

Setup tool to register the PulseAudio sinks as primary and secondary audio outputs.

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion resources/default-settings/pulseaudio.default.pa
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,5 @@ load-module module-filter-apply
#set-default-source input

### Configuration by Jukebox's Tool may come below
# Run ./installation/components/run_configure_audio.sh for configuration
# Run ./installation/components/setup_configure_audio.sh for configuration

2 changes: 1 addition & 1 deletion src/jukebox/components/volume/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ def parse_config() -> List[PulseAudioSinkClass]:
logger.error(f"Configured sink '{pulse_sink_name}' not available sinks '{all_sinks}!\n"
f"Using default sink '{default_sink_name}' as fallback\n"
f"Things like audio sink toggle and volume limit will not work as expected!\n"
f"Please run audio config tool: ./installation/components/run_configure_audio.sh")
f"Please run audio config tool: ./installation/components/setup_configure_audio.sh")

sink_list.append(PulseAudioSinkClass(alias, pulse_sink_name, volume_limit))
key = 'secondary'
Expand Down
2 changes: 1 addition & 1 deletion src/jukebox/run_configure_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Will also setup equalizer and mono down mixer in the pulseaudio config file.
Run this once after installation. Can be re-run at any time to change the settings.
For more information see [Audio Configuration](./../../builders/audio.md#audio-configuration).
For more information see [Audio Configuration](../../builders/audio.md#audio-configuration).
"""
import os
import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/jukebox/run_register_rfid_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Setup tool to configure the RFID Readers.
Run this once to register and configure the RFID readers with the Jukebox. Can be re-run at any time to change
the settings. For more information see [RFID Readers](./../../documentation/developers/rfid/README.md).
the settings. For more information see [RFID Readers](../rfid/README.md).
> [!NOTE]
> This tool will always write a new configurations file. Thus, overwrite the old one (after checking with the user).
Expand Down

0 comments on commit 0b5b5da

Please sign in to comment.