diff options
author | streetturtle <streetturtle@gmail.com> | 2020-12-14 22:33:56 -0500 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2020-12-14 22:33:56 -0500 |
commit | baa9177b7009690d7a47487a2fbb80ae4077b818 (patch) | |
tree | 6a3234085cfac5ead0d41b660d73754201f4180b /todo-widget | |
parent | c319203fc9c4df2e6e43796bf0925d22b3593d66 (diff) |
ultimate volume widget improvements
Diffstat (limited to 'todo-widget')
-rw-r--r-- | todo-widget/todo.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/todo-widget/todo.lua b/todo-widget/todo.lua index 74b3d1b..b8ce3cf 100644 --- a/todo-widget/todo.lua +++ b/todo-widget/todo.lua @@ -208,7 +208,7 @@ local function worker(user_args) local move_up = wibox.widget { - image = WIDGET_DIR .. '/up.png', + image = WIDGET_DIR .. '/chevron-up.svg', resize = false, widget = wibox.widget.imagebox } @@ -223,7 +223,7 @@ local function worker(user_args) end) local move_down = wibox.widget { - image = WIDGET_DIR .. '/down.png', + image = WIDGET_DIR .. '/chevron-down.svg', resize = false, widget = wibox.widget.imagebox } |