diff --git a/main.go b/main.go index cfbf8cf..43283bc 100644 --- a/main.go +++ b/main.go @@ -197,7 +197,7 @@ func (m model) View() string { for i, section := range m.sections { if i == m.selected { - output += selectedSectionStyle.Render("- "+section) + "\n" + output += selectedSectionStyle.Render("-> "+section) + "\n" } else { output += sectionStyle.Render("- "+section) + "\n" @@ -337,7 +337,8 @@ func main() { initLogger() server, _ := wish.NewServer( - wish.WithAddress("0.0.0.0:2222"), + //TODO change port later cant currently will break ssh connection to remote server + wish.WithAddress("0.0.0.0:25565"), wish.WithHostKeyPath(".ssh/host_ed25519"), wish.WithMiddleware(wishtea.Middleware(teaHandler)), )