From d1ee275ebcf562c52874100ce7d96f779be69611 Mon Sep 17 00:00:00 2001 From: DemonInTheCloset Date: Fri, 24 Jun 2022 08:35:41 +0200 Subject: [PATCH] fix(util/separators): Not following theme Fix issue #485 `lain.util.separators` not following theme variables separators_width and separators_height as stated in the wiki --- util/separators.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/separators.lua b/util/separators.lua index ae384ec..0bf9b41 100644 --- a/util/separators.lua +++ b/util/separators.lua @@ -8,10 +8,11 @@ local wibox = require("wibox") local gears = require("gears") +local beautiful = require("beautiful") -- Lain Cairo separators util submodule -- lain.util.separators -local separators = { height = 0, width = 9 } +local separators = { height = (beautiful.separators_height or 0), width = (beautiful.separators_width or 9) } -- [[ Arrow