X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/1738f98c04158ecd7099ad15e97702818d793b2c..3b9f9aa812fbc10fb0376dbeb1ef6f86f71df4e2:/helpers.lua?ds=sidebyside diff --git a/helpers.lua b/helpers.lua index 5e958c3..137bd6a 100644 --- a/helpers.lua +++ b/helpers.lua @@ -77,8 +77,11 @@ end helpers.timer_table = {} -function helpers.newtimer(name, timeout, fun, nostart) - helpers.timer_table[name] = capi.timer({ timeout = timeout }) +function helpers.newtimer(_name, timeout, fun, nostart) + local name = timeout + if not helpers.timer_table[name] then + helpers.timer_table[name] = capi.timer({ timeout = timeout }) + end helpers.timer_table[name]:connect_signal("timeout", fun) helpers.timer_table[name]:start() if not nostart then