Aggressive hyacinth macaw

This commit is contained in:
2026-02-02 19:31:27 +02:00
parent 007e4d7e00
commit c24ef1cc2f
3 changed files with 23 additions and 6 deletions

View File

@@ -140,8 +140,8 @@ func RenderBigClock(t time.Time) string {
timeStr := fmt.Sprintf("%02d:%02d:%02d", h, m, s)
// Colon visible for first 500ms of each second, hidden for last 500ms.
colonVisible := t.UnixMilli()%1000 < 500
// 1500ms cycle: visible for 1000ms, hidden for 500ms.
colonVisible := t.UnixMilli() % 1500 < 1000
var lines [7]string
for i := range lines {