From c489aa63acc1364851e0e51152be3db5c75e145d Mon Sep 17 00:00:00 2001 From: Teivel <41545008+DemonInTheCloset@users.noreply.github.com> Date: Sat, 25 Jun 2022 13:43:16 +0200 Subject: [PATCH] fix(#485): Separators not following theme (#535) * 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 * fix: Removed redundant parenthesis --- util/separators.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/separators.lua b/util/separators.lua index ae384ec..04402bb 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