summaryrefslogtreecommitdiff
path: root/.config/awesome/battery.lua
blob: 772ed46473b556fc631c6e726fd0d38d512d8a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
--------------------------------------------
-- Author: Gregor Best                    --
-- Copyright 2009, 2010, 2011 Gregor Best --
--------------------------------------------

local tostring = tostring
local setmetatable = setmetatable
local io = {
  popen = io.popen
}
local capi = {
  mouse = mouse
}
local math = {
  floor = math.floor
}

local naughty = require("naughty")
local awful = require("awful")
local wibox = require("wibox")
local gears = require("gears")

local widget = wibox.widget.textbox()
local status_text = {
  ["charged"] = "↯",
  ["full"] = "↯",
  ["high"] = "↯",
  ["discharging"] = "▼",
  ["not connected"] = "▼",
  ["charging"] = "▲",
  ["unknown"] = "⌁"
}

local battery = { mt = {}, status_callback = nil }

-- {{{ upower backend
local tonumber = tonumber

local function defaults_to_key(t)
  local function return_key__index(_, key)
    return key
  end

  return setmetatable(t, { __index = return_key__index })
end

local function popen(cmd)
  return io.popen('LC_ALL=C LANG=C ' .. cmd .. ' 2>/dev/null')
end

local function match_case(input, ...)
  local args = { ... }

  for i = 1, #args, 2 do
    local pattern = args[i]
    local action  = args[i + 1]

    local matches = { string.match(input, pattern) }

    if matches[1] then
      action(table.unpack(matches))
      break
    end
  end
end



local upower_backend = { name = 'upower' }

local upower_status_mapping = defaults_to_key {
  ['fully-charged'] = 'charged',
}

function upower_backend:clone(clone)
  return setmetatable(clone or {}, { __index = self })
end

function upower_backend:configure()
  local fd, err = popen('upower -e')
  if not fd then
    return nil, err
  end

  local battery_filenames = {}
  for line in fd:lines() do
    if line:match('battery_BAT') then
      battery_filenames[#battery_filenames + 1] = line
    end
  end
  fd:close()

  if #battery_filenames > 0 then
    return upower_backend:clone { filenames = battery_filenames }
  end
end

function upower_backend:state()
  local results = {}

  for i = 1, #self.filenames do
    local filename = self.filenames[i]

    local rv = {}
    local fd, err = popen('upower -i ' .. filename)

    if not fd then
      return nil, err
    end

    local function handle_time(time, units)
      if time == 'unknown' then
        time = nil
      elseif units == 'hour' or units == 'hours' then
        time = math.floor(time * 60)
      elseif units == 'minute' or units == 'minutes' then
        time = tonumber(math.floor(time))
      else
        time = 0
      end

      rv.time = time
    end

    for line in fd:lines() do
      match_case(line,
        '^%s*percentage:%s*(%d+)', function(charge)
          rv.charge = tonumber(charge)
        end,
        '%s*time to empty:%s*(%S+)%s*(%w*)', handle_time,
        '%s*time to full:%s*(%S+)%s*(%w*)', handle_time,
        'state:%s*(%S+)', function(status)
          rv.status = upower_status_mapping[status]
        end)
    end
    fd:close()
    results[i] = rv
  end

  return table.unpack(results)
end

function upower_backend:details()
  local results = ''

  for i = 1, #self.filenames do
    local filename = self.filenames[i]

    local pipe, err = popen('upower -i ' .. filename)

    if not pipe then
      return nil, err
    end

    local output = pipe:read '*a'
    results = results .. '\n' .. output:gsub('^\n', '')
  end

  return results
end
-- }}}





local backend = upower_backend:configure()

local inverted = false
local show_time = false
local cycle_count = 0
local previous_state

local function update(force)
  if force then
    cycle_count = 0
  end
  if cycle_count == 0 then
    previous_state = { backend:state() }
  end
  cycle_count = (cycle_count + 1) % 60
  local bats = previous_state

  if #bats == 0 then
    widget:set_markup("no data")
    return
  end

  local markup = ''

  for i = 1, #bats do
    local bat = bats[i]
    local color

    local blinking = false

    local charge = bat.charge

    if charge == nil then
      color = '#900000'
      charge = 'Unknown charge'
    elseif charge >= 60 then
      color = '#009000'
    elseif charge > 35 then
      color = '#909000'
    else
      color = '#900000'
      blinking = bat.charge <= 20 and (bat.status == 'discharging' or bat.status == 'not connected')
    end

    local status = status_text[bat.status] or 'unknown'

    local battery_status

    if battery.status_callback then
      battery.status_callback(bat)
    end

    if blinking and inverted then
      battery_status = status .. ' ' .. awful.util.escape(tostring(bat.charge)) .. '%'
    else
      battery_status = '<span foreground="' .. tostring(color) .. '">' .. tostring(status) .. '</span>'.. ' ' .. awful.util.escape(tostring(bat.charge)) .. '%'
    end

    if bat.time and show_time then
      local hours   = math.floor(bat.time / 60)
      local minutes = bat.time % 60

      battery_status = battery_status .. ' ' .. awful.util.escape(string.format('%02d:%02d', hours, minutes))
    end

    if blinking and inverted then
      battery_status = '<span background="' .. tostring(color) .. '">' .. tostring(battery_status) .. '</span>'
    end
    inverted = not inverted

    if i == 1 then
      markup = markup .. battery_status
    else
      markup = markup .. ' ' .. battery_status
    end
  end

  widget:set_markup(markup)
end

local function detail ()
  local details = backend:details()

  if not details then
    details = 'no details available'
  end
  naughty.notify({
    text = details,
    screen = capi.mouse.screen,
  })
  update(true)
end

function get_data()
  local bats = { backend:state() }
  if bats then
    return bats[1]
  end
end

widget:buttons(awful.util.table.join(
  awful.button({ }, 1, detail)
))

return setmetatable(battery, { __call = function ()
  update()
  gears.timer({
      timeout=30,
      autostart=true,
      callback=update,
  })
  return widget
end })

-- vim:ft=lua:ts=2:sw=2:sts=2:tw=80:et