fix indendation

This commit is contained in:
BZ 2021-03-05 12:22:08 +01:00
parent 5049fe3f29
commit 792b0b9480
1 changed files with 51 additions and 51 deletions

View File

@ -214,11 +214,11 @@ E.g. you might want add the rightclick menu to your tasklist:
Example Configuration (as shown on top gif):
------------
```
require("smart_borders"){
require("smart_borders") {
show_button_tooltips = true,
button_positions = { "top" },
buttons = { "floating", "minimize", "maximize", "close" },
button_positions = {"top"},
buttons = {"floating", "minimize", "maximize", "close"},
layout = "fixed",
align_horizontal = "center",
@ -229,39 +229,39 @@ require("smart_borders"){
color_close_normal = {
type = "linear",
from = { 0, 0 },
to = { 60, 0 },
stops = { { 0, "#fd8489" }, { 1, "#56666f" } }
from = {0, 0},
to = {60, 0},
stops = {{0, "#fd8489"}, {1, "#56666f"}}
},
color_close_focus = {
type = "linear",
from = { 0, 0 },
to = { 60, 0 },
stops = { { 0, "#fd8489" }, { 1, "#a1bfcf" } }
from = {0, 0},
to = {60, 0},
stops = {{0, "#fd8489"}, {1, "#a1bfcf"}}
},
color_close_hover = {
type = "linear",
from = { 0, 0 },
to = { 60, 0 },
stops = { { 0, "#FF9EA3" }, { 1, "#a1bfcf" } }
from = {0, 0},
to = {60, 0},
stops = {{0, "#FF9EA3"}, {1, "#a1bfcf"}}
},
color_floating_normal = {
type = "linear",
from = { 0, 0 },
to = { 40, 0 },
stops = { { 0, "#56666f" }, { 1, "#ddace7" } }
from = {0, 0},
to = {40, 0},
stops = {{0, "#56666f"}, {1, "#ddace7"}}
},
color_floating_focus = {
type = "linear",
from = { 0, 0 },
to = { 40, 0 },
stops = { { 0, "#a1bfcf" }, { 1, "#ddace7" } }
from = {0, 0},
to = {40, 0},
stops = {{0, "#a1bfcf"}, {1, "#ddace7"}}
},
color_floating_hover = {
type = "linear",
from = { 0, 0 },
to = { 40, 0 },
stops = { { 0, "#a1bfcf" }, { 1, "#F7C6FF" } }
from = {0, 0},
to = {40, 0},
stops = {{0, "#a1bfcf"}, {1, "#F7C6FF"}}
},
snapping = true,