diff options
-rw-r--r-- | gitlab-widget/gitlab.lua | 4 | ||||
-rw-r--r-- | jira-widget/jira.lua | 4 | ||||
-rw-r--r-- | todo-widget/chevron-down.svg | 1 | ||||
-rw-r--r-- | todo-widget/chevron-up.svg | 1 | ||||
-rw-r--r-- | todo-widget/down.png | bin | 384 -> 0 bytes | |||
-rw-r--r-- | todo-widget/up.png | bin | 363 -> 0 bytes |
6 files changed, 6 insertions, 4 deletions
diff --git a/gitlab-widget/gitlab.lua b/gitlab-widget/gitlab.lua index 5d771b9..c0716d7 100644 --- a/gitlab-widget/gitlab.lua +++ b/gitlab-widget/gitlab.lua @@ -35,9 +35,9 @@ local gitlab_widget = wibox.widget { }, { id = 'error_marker', - draw = function(_, _, cr, _, height) + draw = function(_, _, cr, width, height) cr:set_source(color(beautiful.fg_urgent)) - cr:arc(height/4, height/4, height/4, 0, math.pi*2) + cr:arc(width - height/6, height/6, height/6, 0, math.pi*2) cr:fill() end, visible = false, diff --git a/jira-widget/jira.lua b/jira-widget/jira.lua index 9a89a0d..5a568b5 100644 --- a/jira-widget/jira.lua +++ b/jira-widget/jira.lua @@ -41,9 +41,9 @@ local jira_widget = wibox.widget { }, { id = 'd', - draw = function(_, _, cr, _, height) + draw = function(_, _, cr, width, height) cr:set_source(color(beautiful.fg_urgent)) - cr:arc(height/4, height/4, height/4, 0, math.pi*2) + cr:arc(width - height/6, height/6, height/6, 0, math.pi*2) cr:fill() end, visible = false, diff --git a/todo-widget/chevron-down.svg b/todo-widget/chevron-down.svg new file mode 100644 index 0000000..dceeb0f --- /dev/null +++ b/todo-widget/chevron-down.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#ECEFF4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>
\ No newline at end of file diff --git a/todo-widget/chevron-up.svg b/todo-widget/chevron-up.svg new file mode 100644 index 0000000..88474ce --- /dev/null +++ b/todo-widget/chevron-up.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#ECEFF4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-up"><polyline points="18 15 12 9 6 15"></polyline></svg>
\ No newline at end of file diff --git a/todo-widget/down.png b/todo-widget/down.png Binary files differdeleted file mode 100644 index a93d2a7..0000000 --- a/todo-widget/down.png +++ /dev/null diff --git a/todo-widget/up.png b/todo-widget/up.png Binary files differdeleted file mode 100644 index 0579121..0000000 --- a/todo-widget/up.png +++ /dev/null |