]> 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 088ba67d54498983cac16455f74cfc4ec9d3e1ff..5d6944500f38d6598d0f511af4b31fc225bacc46 100644 (file)
@@ -7,7 +7,9 @@ require("beautiful")
 -- Notification library
 require("naughty")
 
 -- Notification library
 require("naughty")
 
-require("vicious")
+--require("vicious")
+
+require("obvious.battery")
 
 -- Load Debian menu entries
 require("debian.menu")
 
 -- Load Debian menu entries
 require("debian.menu")
@@ -285,7 +287,8 @@ for s = 1, screen.count() do
         spacer,
         mytextclock,
         spacer, separator, spacer,
         spacer,
         mytextclock,
         spacer, separator, spacer,
-        mybatterybox,
+        obvious.battery.widget,
+--        mybatterybox,
 --        batterywidget,
 --        spacer, separator, spacer,
 --        cpuwidget.widget,
 --        batterywidget,
 --        spacer, separator, spacer,
 --        cpuwidget.widget,
@@ -589,26 +592,10 @@ function get_acpibatt()
       return '';
     end
 end
       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)
---}}}