func renderInitialWindow(w *goncurses.Window) { y, _ := w.MaxYX() for i := 1; i < y-1; i++ { w.MoveAddChar(i, 0, '~') } w.Move(0, 0) w.Refresh() }