From 02218dfa1a823bb699820617f63a940e591569a6 Mon Sep 17 00:00:00 2001 From: Mike Bloy Date: Sun, 31 Aug 2025 20:53:47 -0500 Subject: [PATCH] comment out kiosk handling for now --- cmd/root.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index a779e31..675852f 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -9,7 +9,7 @@ import ( "os/signal" "syscall" - "git.bloy.org/mike/hasshelper/kiosk" + // "git.bloy.org/mike/hasshelper/kiosk" "git.bloy.org/mike/hasshelper/web" _ "github.com/joho/godotenv/autoload" "github.com/lmittmann/tint" @@ -54,7 +54,7 @@ func rootCmdRun(cmd *cobra.Command, args []string) { } }() go web.Run(logger, exitchan, ctx) - go kiosk.Run(logger, exitchan, ctx) +// go kiosk.Run(logger, exitchan, ctx) logger.Debug("Waiting for exit") <-done } @@ -105,13 +105,13 @@ func initConfig() { "image_dir", "version", "webserver_port", - "mqtt_broker_url", - "mqtt_broker_user", - "mqtt_broker_password", - "mqtt_presence_topic", - "kiosk_cmd_shell", - "kiosk_cmd_screen_on", - "kiosk_cmd_screen_off", + // "mqtt_broker_url", + // "mqtt_broker_user", + // "mqtt_broker_password", + // "mqtt_presence_topic", + // "kiosk_cmd_shell", + // "kiosk_cmd_screen_on", + // "kiosk_cmd_screen_off", } for _, key := range expected_config { if !viper.IsSet(key) {