diff options
Diffstat (limited to 'sway/sway.5.txt')
-rw-r--r-- | sway/sway.5.txt | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sway/sway.5.txt b/sway/sway.5.txt index 021b3736..ffa181f7 100644 --- a/sway/sway.5.txt +++ b/sway/sway.5.txt @@ -150,6 +150,54 @@ or triggered at runtime. **bindcode** <code> <command> is also available for binding with key codes instead of key names. +**client**.<color_class> <border> <background> <text> <indicator> <child_border>:: + The client commands control the colors of the view borders and title bars. All + of the client commands _require_ five color values. (The one exception is + **client.background** which _requires_ one color value.) If you only want to + specify a subset, supply default colors for all the others. Colors must be + defined in hex. i.e. _#rrggbb_ or _#rrggbbaa_ when including the alpha + channel. + + + The command tokens are: + **color_class**::: Specifies the view to which the colors apply. + **client.background**:::: The color a view will be painted, underneath the + client itself. This will only be visible if a client does not fully + cover its allocated view space. This command only requires one color. _Note_: + This is not currently implemented. + **client.focused**:::: The view that has focus. + **client.focused_inactive**:::: A view that has focus within its + container, but the container is not focused. + **client.placeholder**:::: Used when drawing placeholder view contents. + Only background and text colors are used. _Note_: This is not + currently implemented. + **client.unfocused**:::: A view that does not have focus. + **client.urgent**:::: A view with an urgency hint. _Note_: This is not + currently implemented. + **border**::: The border around the title bar. + **background**::: The background of the title bar. + **text**::: The text color of the title bar. + **indicator**::: The color used to indicate where a new view will open. In a + tiled container, this would paint the right border of the current view if + a new view would be opened to the right. _Note_: This is not currently + implemented. + **child_border**::: The border around the view itself. + ++ +The default colors are: ++ +-- +[options="header"] +|=========================================================================== +|color_class |border |background |text |indicator |child_border +|background |n/a |#ffffffff |n/a |n/a |n/a +|focused |#4c7899ff |#285577ff |#ffffffff |#2e9ef4ff |#285577ff +|focused_inactive |#333333ff |#5f676aff |#ffffffff |#484e50ff |#5f676aff +|unfocused |#333333ff |#222222ff |#888888ff |#292d2eff |#222222ff +|urgent |#2f343aff |#900000ff |#ffffffff |#900000ff |#900000ff +|placeholder |#000000ff |#0c0c0cff |#ffffffff |#000000ff |#0c0c0cff +|=========================================================================== +-- + **debuglog** <on|off|toggle>:: Enables, disables or toggles logging for debug. The toggle argument cannot be used in the configuration file. |