From a62e1cbef6028cb9de945252fbd1b1e9723e4bde Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 26 Sep 2023 13:09:33 +0400 Subject: Make focus ring configurable --- resources/default-config.kdl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'resources') diff --git a/resources/default-config.kdl b/resources/default-config.kdl index 3e15b260..00e0bcaa 100644 --- a/resources/default-config.kdl +++ b/resources/default-config.kdl @@ -40,6 +40,22 @@ input { // which may be more convenient to use. // spawn-at-startup "alacritty" "-e" "fish" +// You can change how the focus ring looks. +// Remember to uncommend the node by removing "/-"! +focus-ring { + // Uncomment this line to disable the focus ring. + // off + + // How many logical pixels the ring extends out from the windows. + width 4 + + // Color of the ring on the active monitor: red, green, blue, alpha. + active-color 0.5 0.8 1.0 1.0 + + // Color of the ring on inactive monitors: red, green, blue, alpha. + inactive-color 0.3 0.3 0.3 1.0 +} + binds { // Keys consist of modifiers separated by + signs, followed by an XKB key name // in the end. To find an XKB name for a particular key, you may use a program -- cgit