mirror of https://github.com/lcpz/lain.git
* 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
This commit is contained in:
parent
1703661273
commit
c489aa63ac
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue