2024-02-24 14:01:36 -08:00
|
|
|
local beautiful = require("beautiful")
|
2024-02-19 19:41:33 -08:00
|
|
|
local wibox = require("wibox")
|
2024-02-24 14:01:36 -08:00
|
|
|
local helpers = require("helpers")
|
|
|
|
|
|
|
|
local theme = beautiful.get()
|
2024-02-18 14:31:14 -08:00
|
|
|
|
2024-02-19 19:41:33 -08:00
|
|
|
local seperator = wibox.widget.textbox()
|
|
|
|
|
2024-02-24 14:01:36 -08:00
|
|
|
seperator.font = helpers.ui.set_font("14")
|
2024-02-25 17:42:33 -08:00
|
|
|
seperator.markup = helpers.ui.colorize_text("|", theme.color.subtext1)
|
2024-02-18 14:31:14 -08:00
|
|
|
|
|
|
|
return seperator
|