feat: complete dashboard redesign, proxy unification, and Windows compatibility fixes
This commit is contained in:
@@ -1,3 +1,17 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# Create the audio directory if it doesn't exist
|
||||
mkdir -p /tmp/audio
|
||||
|
||||
# Create the named pipes if they don't exist
|
||||
for pipe in spotify.pcm airplay.pcm mopidy.pcm; do
|
||||
path="/tmp/audio/$pipe"
|
||||
if [ ! -p "$path" ]; then
|
||||
mkfifo "$path"
|
||||
echo "Created pipe: $path"
|
||||
fi
|
||||
done
|
||||
|
||||
echo "All audio pipes ready. Starting Mopidy..."
|
||||
exec "$@"
|
||||
|
||||
Reference in New Issue
Block a user