mirror of
https://github.com/lcpz/lain.git
synced 2026-09-10 07:26:24 -04:00
* 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 a new issue