feat: complete dashboard redesign, proxy unification, and Windows compatibility fixes

This commit is contained in:
2026-04-02 12:13:37 +02:00
parent 8192388c5d
commit fec4e4635c
33 changed files with 3002 additions and 135 deletions

View File

@@ -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 "$@"