From 0dd945ae968e8d15e6adec71c5a598a39acf18dd Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 8 Oct 2024 20:46:45 +0200 Subject: Add config option "enabled" This allows to disable soundbox devices inside the configuration file. Thus the MAC address can be kept inside the config while the device does not have to be reachable during usage of the app. Later the GUI should be able to change this during runtime. --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'main.go') diff --git a/main.go b/main.go index 047769c..b6f4b83 100644 --- a/main.go +++ b/main.go @@ -109,7 +109,9 @@ func (ui *Ui) HandleInputs(gtx layout.Context) { ui.State.PlayerContext, ui.State.PlayerCancel = context.WithCancel(context.Background()) var targets []net.HardwareAddr for _, entry := range ui.State.Config.Soundboxes { - targets = append(targets, net.HardwareAddr(entry.Mac)) + if entry.Enabled { + targets = append(targets, net.HardwareAddr(entry.Mac)) + } } go play(ui.State.PlayerContext, ui.State.UrlSelector.Value, targets, ui) } -- cgit v1.2.3-70-g09d2