├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── builder.yml │ ├── lint.yml │ ├── release-drafter.yml │ └── stale.yaml ├── .hadolint.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── patches ├── link-libintl.patch ├── never-append-dirty-to-server-module-version.patch └── remove-once-test.patch └── rootfs ├── etc ├── cont-init.d │ └── filesystem.sh ├── pulse │ ├── client.conf │ ├── daemon.conf │ └── system.pa └── s6-overlay │ ├── s6-rc.d │ ├── alsa-init │ │ ├── dependencies.d │ │ │ └── alsa │ │ ├── type │ │ └── up │ ├── alsa │ │ ├── dependencies.d │ │ │ └── base │ │ ├── run │ │ └── type │ ├── pulseaudio │ │ ├── data │ │ │ └── check │ │ ├── dependencies.d │ │ │ └── alsa-init │ │ ├── finish │ │ ├── notification-fd │ │ ├── run │ │ └── type │ └── user │ │ └── contents.d │ │ ├── alsa │ │ ├── alsa-init │ │ └── pulseaudio │ └── scripts │ └── alsa-mixer.sh └── usr ├── bin └── soundconfig └── share └── alsa └── cards ├── G12B-KHADAS-VIM3.conf ├── G12B-ODROID-N2.conf ├── GXBB-ODROID-C2.conf ├── KHADAS-VIM3.conf ├── ODROID-N2.conf ├── RPi-WM8804.conf ├── axg-sound-card.conf ├── bcm2835_alsa.conf ├── gx-sound-card.conf └── vc4-hdmi.conf /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/vscode/devcontainers/base:0-alpine-3.12 2 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.github/workflows/builder.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/README.md -------------------------------------------------------------------------------- /patches/link-libintl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/patches/link-libintl.patch -------------------------------------------------------------------------------- /patches/never-append-dirty-to-server-module-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/patches/never-append-dirty-to-server-module-version.patch -------------------------------------------------------------------------------- /patches/remove-once-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/patches/remove-once-test.patch -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/filesystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/cont-init.d/filesystem.sh -------------------------------------------------------------------------------- /rootfs/etc/pulse/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/pulse/client.conf -------------------------------------------------------------------------------- /rootfs/etc/pulse/daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/pulse/daemon.conf -------------------------------------------------------------------------------- /rootfs/etc/pulse/system.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/pulse/system.pa -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/alsa-init/dependencies.d/alsa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/alsa-init/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/alsa-init/up: -------------------------------------------------------------------------------- 1 | /etc/s6-overlay/scripts/alsa-mixer.sh 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/alsa/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/alsa/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/s6-overlay/s6-rc.d/alsa/run -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/alsa/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/data/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/data/check -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/dependencies.d/alsa-init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/finish -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/notification-fd: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/run -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/pulseaudio/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/alsa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/alsa-init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/pulseaudio: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/scripts/alsa-mixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/etc/s6-overlay/scripts/alsa-mixer.sh -------------------------------------------------------------------------------- /rootfs/usr/bin/soundconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/bin/soundconfig -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/G12B-KHADAS-VIM3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/G12B-KHADAS-VIM3.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/G12B-ODROID-N2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/G12B-ODROID-N2.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/GXBB-ODROID-C2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/GXBB-ODROID-C2.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/KHADAS-VIM3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/KHADAS-VIM3.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/ODROID-N2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/ODROID-N2.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/RPi-WM8804.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/RPi-WM8804.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/axg-sound-card.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/axg-sound-card.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/bcm2835_alsa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/bcm2835_alsa.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/gx-sound-card.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/gx-sound-card.conf -------------------------------------------------------------------------------- /rootfs/usr/share/alsa/cards/vc4-hdmi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant/plugin-audio/HEAD/rootfs/usr/share/alsa/cards/vc4-hdmi.conf --------------------------------------------------------------------------------