summaryrefslogtreecommitdiff
path: root/todo-widget/README.md
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2020-04-02 22:21:58 -0400
committerstreetturtle <streetturtle@gmail.com>2020-04-02 22:21:58 -0400
commit1a04a94838292793f571ed2ddbfb3bdbfaa3b631 (patch)
tree020c14b7b7753317d38075aca54357d8c445cb0f /todo-widget/README.md
parentd2bbf765faffdb5628edbae3b169f3f6fcdad356 (diff)
todo widget
Diffstat (limited to 'todo-widget/README.md')
-rw-r--r--todo-widget/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/todo-widget/README.md b/todo-widget/README.md
new file mode 100644
index 0000000..9c26eb9
--- /dev/null
+++ b/todo-widget/README.md
@@ -0,0 +1,21 @@
+# 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](./todo.gif)
+
+# Installation
+
+Clone 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(),
+ ...
+``` \ No newline at end of file