diff options
author | xero <x@xero.nu> | 2014-03-20 11:55:20 -0400 |
---|---|---|
committer | xero <x@xero.nu> | 2014-03-20 11:55:20 -0400 |
commit | 9e56d1310b2b6d3fb118ee19a589a54a67e76287 (patch) | |
tree | 6edf7d9f259e7a577be365c795a86d7667a6897e /.config/awesome | |
parent | 0ebf1218d82d2aa44874ac0798db9a18da6d62e5 (diff) | |
download | dotfiles_ascii-9e56d1310b2b6d3fb118ee19a589a54a67e76287.tar.xz dotfiles_ascii-9e56d1310b2b6d3fb118ee19a589a54a67e76287.zip |
fix lain calendar currect day highlighting (just added the -h flag to /usr/bin/cal calls)
Diffstat (limited to '')
-rw-r--r-- | .config/awesome/lain/widgets/calendar.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/awesome/lain/widgets/calendar.lua b/.config/awesome/lain/widgets/calendar.lua index c9e265a..b227c8e 100644 --- a/.config/awesome/lain/widgets/calendar.lua +++ b/.config/awesome/lain/widgets/calendar.lua @@ -37,13 +37,13 @@ function calendar:show(t_out, inc_offset) local tims = t_out or 0 local f, c_text local today = tonumber(os.date('%d')) - local init_t = '/usr/bin/cal | sed -r -e "s/(^| )( ' + local init_t = '/usr/bin/cal -h | sed -r -e "s/(^| )( ' if offs == 0 then -- current month showing, today highlighted if today >= 10 then - init_t = '/usr/bin/cal | sed -r -e "s/(^| )(' + init_t = '/usr/bin/cal -h | sed -r -e "s/(^| )(' end calendar.offset = 0 @@ -80,7 +80,7 @@ function calendar:show(t_out, inc_offset) calendar.notify_icon = nil - f = io.popen('/usr/bin/cal ' .. month .. ' ' .. year) + f = io.popen('/usr/bin/cal -h ' .. month .. ' ' .. year) end c_text = "<tt><span font='" .. calendar.font .. " " |