Skip to content

Commit c489aa6

Browse files
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
1 parent 1703661 commit c489aa6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

util/separators.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88

99
local wibox = require("wibox")
1010
local gears = require("gears")
11+
local beautiful = require("beautiful")
1112

1213
-- Lain Cairo separators util submodule
1314
-- lain.util.separators
14-
local separators = { height = 0, width = 9 }
15+
local separators = { height = beautiful.separators_height or 0, width = beautiful.separators_width or 9 }
1516

1617
-- [[ Arrow
1718

0 commit comments

Comments
 (0)