Skip to content

Commit

Permalink
init luarocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Aire-One committed Oct 31, 2024
1 parent f147f9b commit de53b5c
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 61 deletions.
21 changes: 21 additions & 0 deletions awesome-battery_widget-dev-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package = "awesome-battery_widget"
version = "dev-1"
source = {
url = "git+https://github.com/Aire-One/awesome-battery_widget.git",
}

description = {
summary = "A UPowerGlib based battery widget for the Awesome WM with a basic widget template mechanism! 🔋",
homepage = "https://github.com/Aire-One/awesome-battery_widget",
license = "*** please specify a license ***",
}

build = {
type = "builtin",
modules = {
["awesome-battery_widget.init"] = "src/awesome-battery_widget/init.lua",
},
copy_directories = {
"doc",
},
}
116 changes: 55 additions & 61 deletions init.lua → src/awesome-battery_widget/init.lua
Original file line number Diff line number Diff line change
@@ -1,58 +1,57 @@
---------------------------------------------------------------------------
-- A battery widget based on the UPower deamon.
-- A battery widget based on the UPower daemon.
--
-- @author Aire-One
-- @copyright 2020 Aire-One
---------------------------------------------------------------------------

local upower = require('lgi').require('UPowerGlib')
local upower = require("lgi").require "UPowerGlib"

local gtable = require 'gears.table'
local gtimer = require 'gears.timer'
local wbase = require 'wibox.widget.base'
local gtable = require "gears.table"
local gtimer = require "gears.timer" -- cspell: ignore gtimer
local wbase = require "wibox.widget.base" -- cspell: ignore wbase

local setmetatable = setmetatable -- luacheck: ignore setmetatable

local battery_widget = {}
local mt = {}


--- Helper to get the path of all connected power devices.
-- @treturn table The list of all power devices path.
-- @staticfct battery_widget.list_devices
function battery_widget.list_devices()
local ret = {}
local devices = upower.Client():get_devices()
local ret = {}
local devices = upower.Client():get_devices()

for _,d in ipairs(devices) do
table.insert(ret, d:get_object_path())
end
for _, d in ipairs(devices) do
table.insert(ret, d:get_object_path())
end

return ret
return ret
end

--- Helper function to get a device instance from its path.
-- @tparam string path The path of the device to get.
-- @treturn UPowerGlib.Device|nil The device if it was found, `nil` otherwise.
-- @staticfct battery_widget.get_device
function battery_widget.get_device(path)
local devices = upower.Client():get_devices()
local devices = upower.Client():get_devices()

for _,d in ipairs(devices) do
if d:get_object_path() == path then
return d
end
end
for _, d in ipairs(devices) do
if d:get_object_path() == path then
return d
end
end

return nil
return nil
end

--- Helper function to easily get the default BAT0 device path without.
-- @treturn string The BAT0 device path.
-- @staticfct battery_widget.get_BAT0_device_path
function battery_widget.get_BAT0_device_path()
local bat0_path = '/org/freedesktop/UPower/devices/battery_BAT0'
return bat0_path
local bat0_path = "/org/freedesktop/UPower/devices/battery_BAT0"
return bat0_path
end

--- Helper function to convert seconds into a human readable clock string.
Expand All @@ -64,34 +63,31 @@ end
-- @treturn string The human readable generated clock string.
-- @staticfct battery_widget.to_clock
function battery_widget.to_clock(seconds)
if seconds <= 0 then
return '00:00';
else
local hours = string.format('%02.f', math.floor(seconds/3600));
local mins = string.format('%02.f', math.floor(seconds/60 - hours*60));
return hours .. ':' .. mins
end
if seconds <= 0 then
return "00:00"
else
local hours = string.format("%02.f", math.floor(seconds / 3600))
local mins = string.format("%02.f", math.floor(seconds / 60 - hours * 60))
return hours .. ":" .. mins
end
end


--- Gives the default widget to use if user didn't specify one.
-- The default widget used is an `empty_widget` instance.
-- @treturn widget The default widget to use.
local function default_template ()
return wbase.empty_widget()
local function default_template()
return wbase.empty_widget()
end


--- The device monitored by the widget.
-- @property device
-- @tparam UPowerGlib.Device device

--- Emited when the UPower device notify an update.
--- Emitted when the UPower device notify an update.
-- @signal upower::update
-- @tparam battery_widget widget The widget.
-- @tparam UPowerGlib.Device device The Upower device.


--- battery_widget constructor.
--
-- This function creates a new `battery_widget` instance. This widget watches
Expand All @@ -106,35 +102,33 @@ end
-- widget creation.
-- @treturn battery_widget The battery_widget instance build.
-- @constructorfct battery_widget.new
function battery_widget.new (args)
args = gtable.crush({
widget_template = default_template(),
device_path = '',
use_display_device = false
}, args or {})

local widget = wbase.make_widget_from_value(args.widget_template)

widget.device = args.use_display_device
and upower.Client():get_display_device()
or battery_widget.get_device(args.device_path)

-- Attach signals:
widget.device.on_notify = function (d)
widget:emit_signal('upower::update', d)
end

-- Call an update cycle if the user asked to instan update the widget.
if args.instant_update then
gtimer.delayed_call(widget.emit_signal, widget, 'upower::update', widget.device)
end

return widget
end
function battery_widget.new(args)
args = gtable.crush({
widget_template = default_template(),
device_path = "",
use_display_device = false,
}, args or {})

local widget = wbase.make_widget_from_value(args.widget_template)

widget.device = args.use_display_device and upower.Client():get_display_device()
or battery_widget.get_device(args.device_path)

-- Attach signals:
widget.device.on_notify = function(d)
widget:emit_signal("upower::update", d)
end

-- Call an update cycle if the user asked to instant update the widget.
if args.instant_update then
gtimer.delayed_call(widget.emit_signal, widget, "upower::update", widget.device)
end

return widget
end

function mt.__call(self, ...)
return battery_widget.new(...)
function mt.__call(_, ...)
return battery_widget.new(...)
end

return setmetatable(battery_widget, mt)

0 comments on commit de53b5c

Please sign in to comment.