- local carrier = helpers.first_line('/sys/class/net/' .. iface ..
- '/carrier') or ""
- local state = helpers.first_line('/sys/class/net/' .. iface ..
- '/operstate')
- local now_t = helpers.first_line('/sys/class/net/' .. iface ..
- '/statistics/tx_bytes')
- local now_r = helpers.first_line('/sys/class/net/' .. iface ..
- '/statistics/rx_bytes')
- local text = '<span color="' .. header_color .. '">' .. header .. '</span> '
-
- if carrier ~= "1"
- then
- if helpers.get_map(iface)
- then
- n_title = iface
- if n_title == "" then
- n_title = "network"
- header = "Net"
- end
- naughty.notify({ title = n_title, text = "no carrier",
- timeout = 7,
- position = "top_left",
- icon = beautiful.lain_no_net_notify or
- helpers.icons_dir .. "no_net.png",
- fg = beautiful.fg_focus or "#FFFFFF" })
-
- mynet:set_markup(markup(header_color, header) .. markup(color_up, " Off"))
- helpers.set_map(iface, false)
+ -- These are the totals over all specified interfaces
+ net_now = {
+ -- New api - Current state of requested devices
+ devices = {},
+ -- Bytes since last iteration
+ sent = 0,
+ received = 0
+ }
+
+ -- Total bytes transfered
+ local total_t = 0
+ local total_r = 0
+
+ for i, dev in ipairs(iftable) do
+ local dev_now = {}
+ local dev_before = net.devices[dev] or { last_t = 0, last_r = 0 }
+
+ dev_now.carrier = helpers.first_line(string.format('/sys/class/net/%s/carrier', dev)) or '0'
+ dev_now.state = helpers.first_line(string.format('/sys/class/net/%s/operstate', dev)) or 'down'
+
+ local now_t = tonumber(helpers.first_line(string.format('/sys/class/net/%s/statistics/tx_bytes', dev)) or 0)
+ local now_r = tonumber(helpers.first_line(string.format('/sys/class/net/%s/statistics/rx_bytes', dev)) or 0)
+
+ dev_now.sent = (now_t - dev_before.last_t) / timeout / units
+ dev_now.received = (now_r - dev_before.last_r) / timeout / units
+
+ net_now.sent = net_now.sent + dev_now.sent
+ net_now.received = net_now.received + dev_now.received
+
+ dev_now.sent = string.gsub(string.format('%.1f', dev_now.sent), ',', '.')
+ dev_now.received = string.gsub(string.format('%.1f', dev_now.received), ',', '.')
+
+ dev_now.last_t = now_t
+ dev_now.last_r = now_r
+
+ -- This will become dev_before in the next update/iteration
+ net.devices[dev] = dev_now
+
+ total_t = total_t + now_t
+ total_r = total_r + now_r
+
+ -- Notify only once when connection is loss
+ if string.match(dev_now.carrier, "0") and notify == "on" and helpers.get_map(dev) then
+ naughty.notify({
+ title = dev,
+ text = "no carrier",
+ icon = helpers.icons_dir .. "no_net.png",
+ screen = screen
+ })
+ helpers.set_map(dev, false)
+ elseif string.match(dev_now.carrier, "1") then
+ helpers.set_map(dev, true)