summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--todo-widget/todo.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/todo-widget/todo.lua b/todo-widget/todo.lua
index ee459cf..be76e2e 100644
--- a/todo-widget/todo.lua
+++ b/todo-widget/todo.lua
@@ -202,7 +202,7 @@ local function worker(args)
trash_button:connect_signal("button::press", function(c)
table.remove(result.todo_items, i)
- spawn.easy_async_with_shell("printf '" .. json.encode(result) .. "' > /home/pmakhov/.cache/awmw/todo-widget/todos.json")
+ spawn.easy_async_with_shell("printf '" .. json.encode(result) .. "' > " .. STORAGE)
spawn.easy_async(GET_TODO_ITEMS, function(stdout) update_widget(stdout) end)
end)