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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
-------------------------------------------------
-- Text Clock Widget for Awesome Window Manager
-- Shows current time in words, e.g. 11.54 -> eleven fifty four
-- More details could be found here:
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/text-clock-widget
-- @author Pavel Makhov
-- @copyright 2020 Pavel Makhov
-------------------------------------------------
local wibox = require("wibox")
local beautiful = require("beautiful")
local gears = require("gears")
local function tablelength(T)
local count = 0
for _ in pairs(T) do count = count + 1 end
return count
end
local function split(string_to_split, separator)
if separator == nil then separator = "%s" end
local t = {}
for str in string.gmatch(string_to_split, "([^".. separator .."]+)") do
table.insert(t, str)
end
return t
end
local function convertNumberToName(num)
local lowNames = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine",
"ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen",
"eighteen", "nineteen"};
local tensNames = {"twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"}
local tens, ones, result
if num < tablelength(lowNames) then
result = lowNames[num + 1];
else
tens = math.floor(num / 10);
ones = num % 10;
if (tens <= 9) then
result = tensNames[tens - 2 + 1];
if (ones > 0) then
result = result .. " " .. lowNames[ones + 1];
end
else
result = "unknown"
end
end
return result;
end
local text_clock = {}
local function worker(args)
local args = args or {}
local main_color = args.main_color or beautiful.fg_normal
local accent_color = args.accent_color or beautiful.fg_urgent
local font = args.font or beautiful.font
local mode = args.mode or 'human' -- human /
local military_time = args.military_time
if military_time == nil then military_time = false end
text_clock = wibox.widget {
{
id = 'clock',
font = font,
widget = wibox.widget.textbox,
},
layout = wibox.layout.align.horizontal,
set_text = function(self, time)
local t = split(time)
local res = ''
for i, v in ipairs(t) do
res = res .. '<span color="' .. ((i % 2 == 0) and accent_color or main_color) .. '">' .. v .. '</span>'
end
self:get_children_by_id('clock')[1]:set_markup(res)
end
}
gears.timer {
timeout = 1,
call_now = true,
autostart = true,
callback = function()
local time = os.date((military_time and '%H' or '%I') .. ':%M')
local h,m = time:match('(%d+):(%d+)')
local min = tonumber(m)
local hour = tonumber(h)
if mode == 'human' then
local mm
if min == 15 or min == 45 then
mm = 'quater'
elseif min == 30 then
mm = 'half'
else
mm = convertNumberToName((min < 31) and min or 60 - min)
end
local to_past
if min < 31 then
to_past = 'past'
else
to_past = 'to'
hour = hour + 1
end
text_clock:set_text(mm .. ' ' .. to_past .. ' ' .. convertNumberToName(hour))
else
text_clock:set_text(convertNumberToName(hour) .. ' ' .. convertNumberToName(min))
end
end
}
return text_clock
end
return setmetatable(text_clock, { __call = function(_, ...)
return worker(...)
end })
|