aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2010-02-20 04:33:27 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2010-02-20 04:33:27 +0100
commitb96cb9835280f944b7f75ed26e31d4df3e7bf9b1 (patch)
tree89a7bb6286567587225d0332c32b38f76fcffbda
parent23d09f0c5d3eedfd5fc399fb83788768f18664a1 (diff)
downloadvicious-legacy-b96cb9835280f944b7f75ed26e31d4df3e7bf9b1.tar.xz
bat: added a note about Apple PMU and ACPI/procfs
-rw-r--r--bat.lua1
-rw-r--r--cpufreq.lua2
-rw-r--r--helpers.lua5
-rw-r--r--net.lua1
4 files changed, 5 insertions, 4 deletions
diff --git a/bat.lua b/bat.lua
index 5a2cb88..66aab4b 100644
--- a/bat.lua
+++ b/bat.lua
@@ -21,6 +21,7 @@ module("vicious.bat")
-- {{{ Battery widget type
local function worker(format, batid)
+ -- Apple PMU and ACPI/procfs battery widgets are in the [contrib] branch
local battery = helpers.pathtotable("/sys/class/power_supply/" .. batid)
local battery_state = {
["Full\n"] = "↯",
diff --git a/cpufreq.lua b/cpufreq.lua
index f6020e2..7c62455 100644
--- a/cpufreq.lua
+++ b/cpufreq.lua
@@ -21,7 +21,7 @@ local function worker(format, cpuid)
local governor_state = {
["ondemand\n"] = "↯",
["powersave\n"] = "⌁",
- ["userspace\n"] = "@",
+ ["userspace\n"] = "¤",
["performance\n"] = "⚡",
["conservative\n"] = "↯"
}
diff --git a/helpers.lua b/helpers.lua
index e8d6d6c..ccbfe7a 100644
--- a/helpers.lua
+++ b/helpers.lua
@@ -1,8 +1,9 @@
---------------------------------------------------
-- Licensed under the GNU General Public License v2
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
--- * (c) 2010, Rémy C. <shikamaru@mandriva.org>
--- * (c) 2010, Benedikt Sauer <filmor@gmail.com>
+-- * (c) 2009, Rémy C. <shikamaru@mandriva.org>
+-- * (c) 2009, Benedikt Sauer <filmor@gmail.com>
+-- * (c) 2009, Henning Glawe <glaweh@debian.org>
-- * (c) 2009, Lucas de Vries <lucas@glacicle.com>
---------------------------------------------------
diff --git a/net.lua b/net.lua
index bd46664..d477248 100644
--- a/net.lua
+++ b/net.lua
@@ -1,7 +1,6 @@
---------------------------------------------------
-- Licensed under the GNU General Public License v2
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
--- * (c) 2010, Henning Glawe <glaweh@debian.org>
-- * (c) 2009, Lucas de Vries <lucas@glacicle.com>
---------------------------------------------------