diff --git a/statusscreen.go b/statusscreen.go index 439832a..af755d9 100644 --- a/statusscreen.go +++ b/statusscreen.go @@ -18,6 +18,7 @@ func main() { weather := statusscreen.Weather{Config: &config} tm.Clear() + tm.Print("\033[?25l") for { tm.MoveCursor(1, 1) @@ -40,7 +41,7 @@ func main() { tm.Flush() - time.Sleep(1 * time.Second) + time.Sleep(time.Second / 10) } }