From: Jan Xie Date: Wed, 25 Sep 2013 02:51:01 +0000 (+0800) Subject: add icon for task widget X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/f143ba3231276a21911dd49450033a3f2d182ea3?hp=37b61468dd884e5bc8a4bcee51f63cfbab425544 add icon for task widget --- diff --git a/icons/taskwarrior.png b/icons/taskwarrior.png new file mode 100644 index 0000000..171af60 Binary files /dev/null and b/icons/taskwarrior.png differ diff --git a/widgets/task.lua b/widgets/task.lua index b313e8d..fdf439a 100644 --- a/widgets/task.lua +++ b/widgets/task.lua @@ -38,34 +38,32 @@ function task:show(t_out) local font = beautiful.font:sub(beautiful.font:find(""), beautiful.font:find(" ")) - task.offset = 0 - --task.notify_icon = task.icons .. today .. ".png" f = io.popen('task') c_text = "[Next Tasks]\n" + .. task.font_size+2 .. "'>Tasks next\n" + .. "" .. f:read("*all") .. "\n" .. "" f:close() task_notification = naughty.notify({ text = c_text, - --icon = task.notify_icon, - --position = task.position, - --fg = task.fg, - --bg = task.bg, + icon = task.notify_icon, + position = task.position, + fg = task.fg, + bg = task.bg, timeout = tims }) end function task:attach(widget, args) local args = args or {} - task.icons = args.icons or icons_dir .. "cal/white/" task.font_size = tonumber(args.font_size) or 12 task.fg = args.fg or beautiful.fg_normal or "#FFFFFF" task.bg = args.bg or beautiful.bg_normal or "#FFFFFF" task.position = args.position or "top_right" - task.offset = 0 - task.notify_icon = nil + task.notify_icon = icons_dir .. "taskwarrior.png" widget:connect_signal("mouse::enter", function () task:show() end) widget:connect_signal("mouse::leave", function () task:hide() end)