2020-04-03 04:23:07 +02:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
---
|
|
|
|
# ToDo Widget (in progress)
|
|
|
|
|
2020-04-13 21:43:50 +02:00
|
|
|
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:
|
2020-04-03 04:23:07 +02:00
|
|
|
|
|
|
|
![screenshot](../awesome-wm-widgets/assets/img/screenshots/todo-widget/todo.gif)
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
2020-04-13 21:43:50 +02:00
|
|
|
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**:
|
2020-04-03 04:23:07 +02:00
|
|
|
|
|
|
|
```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(),
|
|
|
|
...
|
2020-04-13 21:43:50 +02:00
|
|
|
```
|