music: Update mpd-volume-to-mqtt script

This commit is contained in:
polyfloyd 2024-04-14 20:30:50 +02:00
parent 40093a5936
commit 84e3dc8478
5 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# {{ ansible_managed }}
[Unit]
Description=MPD Volume to MQTT
After=network.target
Requires=mpd.service
[Service]
Type=simple
Restart=always
RestartSec=2s
ExecStart=/bin/bash /opt/mpd-volume-to-mqtt.sh
DynamicUser=true
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,21 @@
# {{ ansible_managed }}
#!/bin/bash
set -eu
set -o pipefail
trap 'mqtt-simple -h {{ mqtt_internal_host }} -p '{{ music_mqtt_mpd_volume }}' -m "" -r' EXIT
prev_volume=x
(echo mixer; mpc idleloop) | while read event; do
if [ $event = "mixer" ]; then
volume=`mpc volume | sed -nr 's/^volume: ([0-9]+)%$/\1/p'`
if [ "$prev_volume" != "$volume" ]; then
mqtt-simple -h {{ mqtt_internal_host }} -p '{{ music_mqtt_mpd_volume }} -r' -m "$volume"
fi
prev_volume=$volume
fi
done