有没有办法让 Awesome WM 中的第二个时钟小部件显示 UTC 日期时间,而无需更改我的时区?作为开发者,UTC 是这参考时区,因此能够浏览以确定有关服务器的事实非常有用。
答案1
我实际上最终得到了这个解决方案:
clock_format = "%a %Y-%m-%d %H:%M %Z"
utc_textclock = wibox.widget.textclock(" " .. clock_format, nil, "Z")
local_textclock = wibox.widget.textclock(" — " .. clock_format .. " ")
答案2
我已在日历上添加时间并显示巴黎或墨尔本时间我的日历小部件您可以检查此项来更新您的小部件。
主要的魔力在这里:
local f = io_m.popen("TZ='"..locale.."' date +%H:%M")
local s = f:read('*a')
local header = os.date("%B %Y ",os.time{year=year,month=month,day=1})..s
快速使用方法:创建小部件:
mytextclock = awful.widget.textclock()
require('calendar2')
calendar2.addCalendarToWidget(mytextclock, io, "<span color=\"yellow\"><b>%s</b></span>")
然后
将您的小部件放入您的 wibox 中
-- Create the wibox
mywibox = {}
for s = 1, screen.count() do
mywibox[s] = awful.wibox({ position = "top", screen = s })
mywibox[s].widgets = {
{
mylauncher,
mytaglist[s],
mypromptbox[s],
["layout"] = awful.widget.layout.horizontal.leftright
},
mylayoutbox[s],
mytextclock,
["layout"] = awful.widget.layout.horizontal.rightleft
}