diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-21 19:41:17 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-21 19:41:17 -0300 |
commit | cb723167a6621a037fd51ed403c4579c60e300f9 (patch) | |
tree | 3ba7f0f6012d45eb1e86fe7fbc5846424b3a2c0e /modules | |
parent | d039ef202d01ae22738791e6775977ae1e7c7a71 (diff) | |
download | dotfiles-cb723167a6621a037fd51ed403c4579c60e300f9.tar.gz dotfiles-cb723167a6621a037fd51ed403c4579c60e300f9.tar.bz2 |
Adding leds widget
Diffstat (limited to 'modules')
-rw-r--r-- | modules/awesome/config.dot/awesome.link/.leds.lua.swp | bin | 0 -> 12288 bytes | |||
-rw-r--r-- | modules/awesome/config.dot/awesome.link/leds.lua | 13 | ||||
-rw-r--r-- | modules/awesome/config.dot/awesome.link/rc.lua | 13 |
3 files changed, 25 insertions, 1 deletions
diff --git a/modules/awesome/config.dot/awesome.link/.leds.lua.swp b/modules/awesome/config.dot/awesome.link/.leds.lua.swp Binary files differnew file mode 100644 index 0000000..87879b1 --- /dev/null +++ b/modules/awesome/config.dot/awesome.link/.leds.lua.swp diff --git a/modules/awesome/config.dot/awesome.link/leds.lua b/modules/awesome/config.dot/awesome.link/leds.lua new file mode 100644 index 0000000..382abdd --- /dev/null +++ b/modules/awesome/config.dot/awesome.link/leds.lua @@ -0,0 +1,13 @@ +-- See https://bbs.archlinux.org/viewtopic.php?id=68511 +myledbox = widget({ type = "textbox" }) + +function run_leds() + local filedescripter = io.popen('leds') + local value = filedescripter:read() + filedescripter:close() + return value +end + +mytimer = timer({ timeout = 1 }) +mytimer:add_signal("timeout", function() myledbox.text = run_leds() end) +mytimer:start() diff --git a/modules/awesome/config.dot/awesome.link/rc.lua b/modules/awesome/config.dot/awesome.link/rc.lua index 767ddbe..0fbe0ed 100644 --- a/modules/awesome/config.dot/awesome.link/rc.lua +++ b/modules/awesome/config.dot/awesome.link/rc.lua @@ -2,11 +2,16 @@ require("awful") require("awful.autofocus") require("awful.rules") + -- Theme handling library require("beautiful") + -- Notification library require("naughty") +-- Widget libraries +require("vicious") + -- Load Debian menu entries require("debian.menu") @@ -47,6 +52,11 @@ layouts = } -- }}} +-- {{{ Widgets +-- Leds +dofile(configdir .. "/leds.lua") +-- }}} + -- {{{ Tags -- Define a tag table which hold all screen tags. tags = {} @@ -152,6 +162,7 @@ for s = 1, screen.count() do mylayoutbox[s], mytextclock, s == 1 and mysystray or nil, + myledbox, mytasklist[s], layout = awful.widget.layout.horizontal.rightleft } @@ -361,7 +372,7 @@ client.add_signal("focus", function(c) c.border_color = beautiful.border_focus e client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) -- }}} --- Custom +-- Key mappings dofile(configdir .. "/keys.lua") -- Startup commands |