diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-12-27 15:12:25 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-12-27 15:12:25 -0200 |
commit | 8ab8b8b07ef26a4422af1eb5b9188fbb2ac23110 (patch) | |
tree | 02595d2aa0b8ffce0f70106aa61808e7de43665d /modules/awesome/config.dot/awesome.link/leds.lua | |
parent | e95b8dbe6be571feb2691e838c340059d1401ab8 (diff) | |
download | dotfiles-8ab8b8b07ef26a4422af1eb5b9188fbb2ac23110.tar.gz dotfiles-8ab8b8b07ef26a4422af1eb5b9188fbb2ac23110.tar.bz2 |
Removing awesome to convert it to a submodule
Diffstat (limited to 'modules/awesome/config.dot/awesome.link/leds.lua')
-rw-r--r-- | modules/awesome/config.dot/awesome.link/leds.lua | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/awesome/config.dot/awesome.link/leds.lua b/modules/awesome/config.dot/awesome.link/leds.lua deleted file mode 100644 index 382abdd..0000000 --- a/modules/awesome/config.dot/awesome.link/leds.lua +++ /dev/null @@ -1,13 +0,0 @@ --- 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() |