24 lines
605 B
Lua
24 lines
605 B
Lua
local awful = require("awful")
|
|
local wibox = require("wibox")
|
|
local beautiful = require("beautiful")
|
|
local dpi = require("beautiful").xresources.apply_dpi
|
|
local helpers = require("helpers")
|
|
|
|
local wifi = wibox.widget {
|
|
font = beautiful.icon .. " 16",
|
|
markup = helpers.colorizeText("", beautiful.fg),
|
|
widget = wibox.widget.textbox,
|
|
valign = "center",
|
|
align = "center"
|
|
}
|
|
|
|
awesome.connect_signal("signal::network", function(value)
|
|
if value then
|
|
wifi.markup = ""
|
|
else
|
|
wifi.markup = helpers.colorizeText("", beautiful.fg2 .. "99")
|
|
end
|
|
end)
|
|
|
|
return wifi
|