Added indices
This commit is contained in:
parent
37ecf108e0
commit
b67b5c5f43
|
@ -8,12 +8,12 @@ local json = require('jsonutils')
|
|||
local home = os.getenv('HOME')
|
||||
local todo_path = home .. '/.config/todo/todo.json'
|
||||
|
||||
function todo_list_widget(todo, s)
|
||||
function todo_list_widget(index, todo, s)
|
||||
|
||||
local text = '\n <b>' .. todo.title .. '</b> \n'
|
||||
local text = '\n <b>' .. index .. '. ' .. todo.title .. '</b> \n'
|
||||
|
||||
for key, item in pairs(todo.items) do
|
||||
text = text .. ' - ' .. item .. ' \n'
|
||||
text = text .. ' ' .. key .. '. ' .. item .. ' \n'
|
||||
end
|
||||
|
||||
local text = wibox.widget {
|
||||
|
@ -62,7 +62,7 @@ function add_background_widget(s)
|
|||
local widgets = {}
|
||||
|
||||
for key, val in pairs(todo) do
|
||||
l:add(todo_list_widget(val, s))
|
||||
l:add(todo_list_widget(key, val, s))
|
||||
end
|
||||
|
||||
background_widget = awful.wibar({
|
||||
|
|
Loading…
Reference in New Issue