Files
aiolauncher_scripts/samples/colors-sample.lua
2021-09-01 07:50:17 +03:00

18 lines
297 B
Lua

function on_resume()
local colors = ui:get_colors()
local colors_strings = stringify_table(colors)
ui:show_lines(colors_strings)
end
function stringify_table(tab)
local new_tab = {}
for k,v in pairs(tab) do
table.insert(new_tab, k..": "..tostring(v))
end
return new_tab
end