summaryrefslogtreecommitdiff
path: root/todo-widget/README.md
blob: 979f4f252ce5cd147420e9f7c1d91e88fe3fb873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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](./todo.gif)

# 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**:

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