allows task-switch aka exit_app_view when clicking in top left area from fullscreen...
[monky] / lua_scripts / LoadAll.lua
1 do
2         package.path = "/home/user/MyDocs/lua/?.lua" --loads all lua files from here
3         require 'text' --specify each one we really want again like this, text = text.lua
4         require 'graph'
5         require 'bargraph_eng'
6         require 'misc'
7         require 'luatraverse'
8         require 'strict'
9
10         --local count
11         
12         function conky_main() --conky will run this if you specified to load 'main' in the conf
13                 conky_main_bars()
14                 conky_main_graph()
15                 conky_draw_text()
16                 --collectgarbage(collect)
17                 --local y = traverse.countreferences(deleteme)
18                 --print (tostring(y))
19                 --count = #(_G)
20                 --local run = true
21                 --io.output("/home/user/MyDocs/lua/lua.log")
22                 --for n,v in pairs(_G) do
23                 --      io.write (tostring(n)," ",tostring(v),"\n")
24                 --end
25                 --io.write (tostring(count))
26                 --print (count)
27         end
28 end