awesome-wm-widgets/todo-widget
streetturtle 1a04a94838 todo widget 2020-04-02 22:21:58 -04:00
..
README.md todo widget 2020-04-02 22:21:58 -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 widgets displays a list of to do items and allows to mark item as done, delete item and create new ones:

screenshot

Installation

Clone 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(),
		...