aboutsummaryrefslogtreecommitdiff
path: root/modules/awesome/config.dot/awesome.link/leds.lua
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-12-27 15:12:25 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-12-27 15:12:25 -0200
commit8ab8b8b07ef26a4422af1eb5b9188fbb2ac23110 (patch)
tree02595d2aa0b8ffce0f70106aa61808e7de43665d /modules/awesome/config.dot/awesome.link/leds.lua
parente95b8dbe6be571feb2691e838c340059d1401ab8 (diff)
downloaddotfiles-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.lua13
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()