diff --git a/blocks/workspace_apps/main.go b/blocks/workspace_apps/main.go index f556b74..3e2c8a1 100644 --- a/blocks/workspace_apps/main.go +++ b/blocks/workspace_apps/main.go @@ -8,7 +8,6 @@ import ( "os/exec" "strconv" "strings" - "time" ) type WindowProperty struct { @@ -131,15 +130,8 @@ func main() { background := "#222222" if app.Urgent { - s := time.Now().Format("%S") - second, _ := strconv.Atoi(s) foreground = "#ffffff" - - if second%2 == 1 { - background = "#87af15" - } else { - background = "#07c0d4" - } + background = "#07c0d4" } else if app.Focused { foreground = "#07c0d4" background = "#333333"