From 1633a5ebc235602ea834fe9411e1ff06985fd070 Mon Sep 17 00:00:00 2001 From: Max Bane Date: Fri, 14 Oct 2022 18:00:44 +0000 Subject: [PATCH] fix(config): call ActiveWindowBorderColour correctly The sample config only provided three of the four required arguments in the example call to ActiveWindowBorderColour. Uncommenting the line as it was would raise an error from AuthoHotKey. --- komorebi.sample.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komorebi.sample.ahk b/komorebi.sample.ahk index 812142d6..c2e457a5 100644 --- a/komorebi.sample.ahk +++ b/komorebi.sample.ahk @@ -24,7 +24,7 @@ InvisibleBorders(7, 0, 14, 7) WorkspaceName(0, 0, "I") ; Uncomment the next two lines if you want a visual border drawn around the focused window -; ActiveWindowBorderColour(66, 165, 245) ; this is a nice blue colour +; ActiveWindowBorderColour(66, 165, 245, "single") ; this is a nice blue colour ; ActiveWindowBorder("enable") ; Allow komorebi to start managing windows