diff options
author | streetturtle <streetturtle@users.noreply.github.com> | 2021-04-11 20:36:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 20:36:24 -0400 |
commit | ddff9577fc0b204d7beb65eac523723a18c33623 (patch) | |
tree | d5fee445efff694095b4bb0f5553386c6b97dbab | |
parent | 83856a188b43b0ef908c360310c069d27864c134 (diff) | |
parent | a47ccb782f3e09c1d19536ed298eadae3bfa5219 (diff) |
Merge pull request #250 from nuno-silva/ci-warns
fix CI warnings
-rw-r--r-- | brightness-widget/brightness.lua | 2 | ||||
-rw-r--r-- | experiments/apt-widget/apt-widget.lua | 12 | ||||
-rw-r--r-- | github-contributions-widget/github-contributions-widget.lua | 3 |
3 files changed, 9 insertions, 8 deletions
diff --git a/brightness-widget/brightness.lua b/brightness-widget/brightness.lua index d5a79a9..2afb38a 100644 --- a/brightness-widget/brightness.lua +++ b/brightness-widget/brightness.lua @@ -90,9 +90,7 @@ local function worker(user_args) start_angle = 4.71238898, -- 2pi*3/4 forced_height = 18, forced_width = 18, - bg = bg_color, paddings = 2, - colors = {color}, widget = wibox.container.arcchart, set_value = function(self, level) self:set_value(level) diff --git a/experiments/apt-widget/apt-widget.lua b/experiments/apt-widget/apt-widget.lua index df93bd6..9d35b0e 100644 --- a/experiments/apt-widget/apt-widget.lua +++ b/experiments/apt-widget/apt-widget.lua @@ -29,6 +29,7 @@ local function show_warning(message) text = message} end +-- luacheck:ignore ellipsize local function ellipsize(text, length) return (text:len() > length and length > 0) and text:sub(0, length - 3) .. '...' @@ -65,6 +66,7 @@ local apt_widget = wibox.widget { --yaru-theme-sound/focal-updates,focal-updates 20.04.10.1 all [upgradable from: 20.04.8] local parse_package = function(line) + --luacheck:ignore 211 local name,one,nv,type,ov = line:match('(.*)%/(.*)%s(.*)%s(.*)%s%[upgradable from: (.*)]') if name == nil then return nil end @@ -128,7 +130,6 @@ local function worker(user_args) end end) - local i = 1 for line in containers:gmatch("[^\r\n]+") do local package = parse_package(line) @@ -230,8 +231,10 @@ local function worker(user_args) self:get_children_by_id('name')[1]:set_opacity(0.4) self:get_children_by_id('name')[1]:emit_signal('widget::redraw_needed') - spawn.easy_async(string.format([[sh -c 'yes | aptdcon --hide-terminal -u %s']], package['name']), function(stdout, stderr) - rows:remove_widgets(self) + spawn.easy_async( + string.format([[sh -c 'yes | aptdcon --hide-terminal -u %s']], package['name']), + function(stdout, stderr) -- luacheck:ignore 212 + rows:remove_widgets(self) end) end @@ -254,8 +257,6 @@ local function worker(user_args) rows:add(row) end - - i = i + 1 end @@ -285,6 +286,7 @@ local function worker(user_args) widget = wibox.widget.imagebox } header_refresh_icon:buttons(awful.util.table.join(awful.button({}, 1, function() + -- luacheck:ignore 213 for i,v in pairs(to_update) do if v ~= nil then v:update() diff --git a/github-contributions-widget/github-contributions-widget.lua b/github-contributions-widget/github-contributions-widget.lua index cae8ed6..aecc966 100644 --- a/github-contributions-widget/github-contributions-widget.lua +++ b/github-contributions-widget/github-contributions-widget.lua @@ -14,7 +14,8 @@ local wibox = require("wibox") local widget_themes = require("awesome-wm-widgets.github-contributions-widget.themes") local GET_CONTRIBUTIONS_CMD = [[bash -c "curl -s https://github-contributions.now.sh/api/v1/%s]] - .. [[ | jq -r '[.contributions[] | select ( .date | strptime(\"%%Y-%%m-%%d\") | mktime < now)][:%s]| .[].intensity'"]] + .. [[ | jq -r '[.contributions[] ]] + .. [[ | select ( .date | strptime(\"%%Y-%%m-%%d\") | mktime < now)][:%s]| .[].intensity'"]] local github_contributions_widget = wibox.widget{ reflection = { |