blob: 92f70dc6e845a8fcc0bf6ae2b9d8de615b12c69d (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
-- mod-version:2 -- lite-xl 2.0
local core = require "core"
local config = require "core.config"
local style = require "core.style"
local StatusView = require "core.statusview"
local scan_rate = 1
config.plugins.statusclock = {
time_format = "%H:%M:%S",
date_format = "%A, %d %B %Y"
}
local time_data = {
time_text = '',
date_text = '',
}
core.add_thread(function()
while true do
local time_text = os.date(config.plugins.statusclock.time_format)
local date_text = os.date(config.plugins.statusclock.date_format)
if time_data.time_text ~= time_text or time_data.time_text ~= date_text then
core.redraw = true
time_data.time_text = time_text
time_data.date_text = date_text
end
coroutine.yield(scan_rate)
end
end)
local get_items = StatusView.get_items
function StatusView:get_items()
local left, right = get_items(self)
local t = {
style.dim,
self.separator,
style.dim and style.text,
time_data.date_text
}
for _, item in ipairs(t) do
table.insert(right, item)
end
return left, right
end
|