50 lines
1.2 KiB
Lua
50 lines
1.2 KiB
Lua
-- mod-version:3
|
|
-- original implementation by AqilCont
|
|
local core = require "core"
|
|
local config = require "core.config"
|
|
local common = require "core.common"
|
|
local style = require "core.style"
|
|
local StatusView = require "core.statusview"
|
|
|
|
config.plugins.memoryusage = common.merge({
|
|
enabled = true,
|
|
-- The config specification used by the settings gui
|
|
config_spec = {
|
|
name = "Memory Usage",
|
|
{
|
|
label = "Enabled",
|
|
description = "Show or hide the lua memory usage from the status bar.",
|
|
path = "enabled",
|
|
type = "toggle",
|
|
default = true,
|
|
on_apply = function(enabled)
|
|
core.add_thread(function()
|
|
if enabled then
|
|
core.status_view:get_item("status:memory-usage"):show()
|
|
else
|
|
core.status_view:get_item("status:memory-usage"):hide()
|
|
end
|
|
end)
|
|
end
|
|
}
|
|
}
|
|
}, config.plugins.memoryusage)
|
|
|
|
core.status_view:add_item({
|
|
name = "status:memory-usage",
|
|
alignment = StatusView.Item.RIGHT,
|
|
get_item = function()
|
|
return {
|
|
style.text,
|
|
string.format(
|
|
"%.2f MB",
|
|
(math.floor(collectgarbage("count") / 10.24) / 100)
|
|
)
|
|
}
|
|
end,
|
|
position = 1,
|
|
tooltip = "lua memory usage",
|
|
separator = core.status_view.separator2
|
|
})
|
|
|