37 lines
3.0 KiB
Lua
37 lines
3.0 KiB
Lua
-- ██╗ ██╗ ██████╗ ██████╗ ██╗███████╗ ██████╗ ███╗ ██╗████████╗ █████╗ ██╗
|
|
-- ██║ ██║██╔═══██╗██╔══██╗██║╚══███╔╝██╔═══██╗████╗ ██║╚══██╔══╝██╔══██╗██║
|
|
-- ███████║██║ ██║██████╔╝██║ ███╔╝ ██║ ██║██╔██╗ ██║ ██║ ███████║██║
|
|
-- ██╔══██║██║ ██║██╔══██╗██║ ███╔╝ ██║ ██║██║╚██╗██║ ██║ ██╔══██║██║
|
|
-- ██║ ██║╚██████╔╝██║ ██║██║███████╗╚██████╔╝██║ ╚████║ ██║ ██║ ██║███████╗
|
|
-- ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚══════╝
|
|
|
|
-- ███████╗███████╗██████╗ █████╗ ██████╗ █████╗ ████████╗ ██████╗ ██████╗
|
|
-- ██╔════╝██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗
|
|
-- ███████╗█████╗ ██████╔╝███████║██████╔╝███████║ ██║ ██║ ██║██████╔╝
|
|
-- ╚════██║██╔══╝ ██╔═══╝ ██╔══██║██╔══██╗██╔══██║ ██║ ██║ ██║██╔══██╗
|
|
-- ███████║███████╗██║ ██║ ██║██║ ██║██║ ██║ ██║ ╚██████╔╝██║ ██║
|
|
-- ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
|
|
|
|
-- ===================================================================
|
|
-- Initialization
|
|
-- ===================================================================
|
|
|
|
|
|
local wibox = require("wibox")
|
|
local dpi = require("beautiful").xresources.apply_dpi
|
|
|
|
|
|
-- ===================================================================
|
|
-- Widget Creation
|
|
-- ===================================================================
|
|
|
|
|
|
local horizontal_separator = wibox.widget {
|
|
orientation = "horizontal",
|
|
forced_height = dpi(16),
|
|
opacity = 0.20,
|
|
widget = wibox.widget.separator
|
|
}
|
|
|
|
return horizontal_separator
|