awesome-wm-widgets/todo-widget
streetturtle 3ecea9dcc2
Update README.md
2020-04-04 15:11:33 -04:00
..
README.md Update README.md 2020-04-04 15:11:33 -04:00
todo.gif todo widget 2020-04-02 22:21:58 -04:00
todo.lua todo widget 2020-04-02 22:21:58 -04:00

README.md

ToDo Widget (in progress)

This widget displays a list of to do items and allows to mark item as done/undone, delete an item and create a new ones:

screenshot

Installation

Put a json.lua from this repository: https://github.com/rxi/json.lua under ~/.config/awesone folder. And don't forget to start a repo :)

Then clone this repo under ~/.config/awesome/ and add the widget in rc.lua:

local todo_widget = require("awesome-wm-widgets.todo-widget.todo")
...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
		...
        -- default        
        todo_widget(),
		...