Add help text to hdmi on/off

This commit is contained in:
KemoNine 2020-09-04 18:47:50 -04:00
parent bfbb296784
commit 20c73767de
1 changed files with 1 additions and 0 deletions

View File

@ -248,6 +248,7 @@ func ConfigGui(config *koanf.Koanf) {
main.SetTitle("Configure HDMI On/Off") main.SetTitle("Configure HDMI On/Off")
main.Clear() main.Clear()
main.AddItem(hdmiForm, 0, 1, true) main.AddItem(hdmiForm, 0, 1, true)
main.AddItem(tview.NewTextView().SetText("These values are date+time combos\n\nPlease see https://www.freedesktop.org/software/systemd/man/systemd.time.html for details\n\nONLY adjust the times (24h format) if unsure of what to change"), 0, 1, false)
app.SetFocus(hdmiForm) app.SetFocus(hdmiForm)
} }
}) })