使用我的rc.lua中的这段代码(AwesomeWM的配置文件),我得到你在图像中看到的内容:
mybattmon = wibox.widget.textbox()
function battery_status ()
local output={}
local fd=io.popen("acpi", "r")
local line=fd:read()
while line do
local battery_load = string.match(line, "(%d*)%%")
local discharging
if string.match(line, "Discharging")=="Discharging"
then
discharging="-"
elseif string.match(line, "Charging")=="Charging"
then
discharging="⚡"
else
discharging=""
end
-- if tonumber(battery_load) < 10 then fontColor="red" else fontColor="black" end
-- table.insert(output,"<span color='" ..fontColor.. "'>")
table.insert(output,discharging.. "" ..battery_load.. "%")
-- table.insert(output,"</span>")
line=fd:read() --read next line
end
return table.concat(output,"|")
end
my_battmon_timer = timer({ timeout = 2 })
my_battmon_timer:connect_signal("timeout", function()
mybattmon:set_markup( '<span background="#92B0A0" font="' .. font .. '"color="#000">BAT: ' .. battery_status() .. '</span>' )
end)
my_battmon_timer:start()
如果我取消注释三条注释线(当电池电量下降到10%以下时,它们会改变颜色),我会得到以下信息:
当我放入第二块电池时,垂直条会分开。
有人理解为什么改变颜色的三条线会使它在文本前后插入条形图?
答案 0 :(得分:2)
当表有多个元素时,您正在插入管道。
您的原始代码实际上是这样的(对于单电池情况):
local output={}
table.insert(output, "a")
print(table.concat(output, "|"))
# a
您的未注释版本的代码实际上是这样的:
local output={}
table.insert(output, "pre-a")
table.insert(output, "a")
table.insert(output, "post-a")
print(table.concat(output, "|"))
# pre-a|a|post-a
您希望将span字符串格式化为表格中的一个条目。
if tonumber(battery_load) < 10 then fontColor="red" else fontColor="black" end
local batstr = "<span color='" ..fontColor.. "'>"
batstr = batstr..discharging.. "" ..battery_load.. "%"
batstr = batstr.."</span>"
table.insert(output,batstr)