]> git.madduck.net Git - etc/awesome.git/blobdiff - .config/awesome/rc.lua

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

use obvious battery widget
[etc/awesome.git] / .config / awesome / rc.lua
index 37855d1cabea27ebb4e3331f06e61a5761f1310e..5d6944500f38d6598d0f511af4b31fc225bacc46 100644 (file)
@@ -9,6 +9,8 @@ require("naughty")
 
 --require("vicious")
 
+require("obvious.battery")
+
 -- Load Debian menu entries
 require("debian.menu")
 
@@ -285,7 +287,8 @@ for s = 1, screen.count() do
         spacer,
         mytextclock,
         spacer, separator, spacer,
-        mybatterybox,
+        obvious.battery.widget,
+--        mybatterybox,
 --        batterywidget,
 --        spacer, separator, spacer,
 --        cpuwidget.widget,
@@ -589,26 +592,10 @@ function get_acpibatt()
       return '';
     end
 end
-t = timer({ timeout = 20 })
-t:add_signal('timeout', hook_battery)
-t:start()
-hook_battery()
+--t = timer({ timeout = 20 })
+--t:add_signal('timeout', hook_battery)
+--t:start()
+--hook_battery()
+--bashets.register_lua(mybatterybox, get_acpibatt, '%1', 30)
+--bashets.start()
 -- }}}
-
---{{{ batt hook
-local function get_bat()
-  local a = io.open("/sys/class/power_supply/BAT1/charge_full")
-  for line in a:lines() do
-    full = line
-  end
-  a:close()
-  local b = io.open("/sys/class/power_supply/BAT1/charge_now")
-  for line in b:lines() do
-    now = line
-  end
-  b:close()
-  batt=math.floor(now*100/full)
-  batterywidget:bar_data_add("bat",batt )
-end
--- awful.hooks.timer.register(5, get_bat)
---}}}