diff --git a/main.go b/main.go index 7da0406..50d0c8c 100644 --- a/main.go +++ b/main.go @@ -4,6 +4,7 @@ import ( "context" "errors" "flag" + "fmt" "net" "os" "os/signal" @@ -109,6 +110,7 @@ func initialModel(renderer *lipgloss.Renderer, w int, h int) model { } list := list.New(listItems, list.NewDefaultDelegate(), w, h-4) + list.Styles.TitleBar = renderer.NewStyle() list.SetShowTitle(false) // -1 to allow for the initial height of the nav model @@ -298,6 +300,8 @@ func main() { flag.Parse() + fmt.Println(os.Environ()) + if isSsh { initServer() } else {