awesome-wm-widgets/todo-widget
2021-12-13 17:36:10 +08:00
..
checkbox-checked-symbolic.svg Fix #138 2020-05-18 22:19:57 -04:00
chevron-down.svg [todo] add missing icons for moving items in the list 2021-01-07 11:36:02 -05:00
chevron-up.svg [todo] add missing icons for moving items in the list 2021-01-07 11:36:02 -05:00
list-add-symbolic.svg Fix #138 2020-05-18 22:19:57 -04:00
README.md grammar correction 2021-12-13 17:36:10 +08:00
todo.gif todo widget 2020-04-02 22:21:58 -04:00
todo.lua [todo] highlight widget when the popup is shown 2021-03-06 13:31:22 -05:00
window-close-symbolic.svg Fix #138 2020-05-18 22:19:57 -04:00

ToDo Widget

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

screenshot

Installation

Widget persists todo items as a JSON, so in order to simplify JSON serialisation/deserialisation download a json.lua from this repository: https://github.com/rxi/json.lua under ~/.config/awesone folder. And don't forget to star a repo :)

Then clone this repository 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(),
		...      

Also note that widget uses Arc Icons and expects them to be installed under /usr/share/icons/Arc/.

Theming

Widget uses your theme's colors. In case you want to have different colors, without changing your theme, please create an issue for it. I'll extract them as widget parameters.