summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-10-04 00:04:03 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-10-04 00:04:03 +0200
commit65fad903d5a4650dfc5b86eb2f9a1167d34163de (patch)
tree3fdb56f23bbd7a220b6bce773621daf0baae8f7d /rc.lua
parent1a394e4ce166f460982cb635c66ac487d60a562e (diff)
downloadawesome-configs-65fad903d5a4650dfc5b86eb2f9a1167d34163de.tar.xz
rc.lua: no day padding in date
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.lua b/rc.lua
index 6e30b55..64c2405 100644
--- a/rc.lua
+++ b/rc.lua
@@ -299,7 +299,7 @@ dateicon.image = image(beautiful.widget_date)
-- Initialize widget
datewidget = widget({ type = "textbox", name = "datewidget" })
-- Register widget
-vicious.register(datewidget, vicious.widgets.date, "%b %e, %R", 61)
+vicious.register(datewidget, vicious.widgets.date, "%b %d, %R", 61)
-- Register buttons
datewidget:buttons(awful.util.table.join(
awful.button({ }, 1, function () awful.util.spawn("pylendar.py", false) end)))