I'm using AwesomeWM, and I'm trying to display the time in my wibox using this code
vicious.register(datewidget, vicious.widgets.date, os.date("%b ")..(os.date("%d")+0).. ', ' ..(os.date("%I")+0)..os.date(":%M")..string.lower( os.date(" %p ")), 1)
The time is correct when I open AwesomeWM, but it doesn't update. For whatever reason , 1) doesn't work.
heres my full rc.lua
os.date("%b %d, %I:%M ")..string.lower( os.date("%p ")would work as you're just adding 0 to those values. – hjpotter92 Feb 18 at 3:38