blob: 5c76160f6c7ef1a2bfa4310d51d468bb73507425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
-- lite-xl 1.16
local core = require "core"
local style = require "core.style"
local status_view = require "core.statusview"
local time = ""
core.add_thread(function()
while true do
local t = os.date("*t")
time = string.format("%02d:%02d", t.hour, t.min)
coroutine.yield(1)
end
end)
local get_items = status_view.get_items
function status_view:get_items()
local left, right = get_items(self)
local t = {style.dim, self.separator2, style.accent, time}
for _, item in ipairs(t) do
table.insert(right, item)
end
return left, right
end
|