16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
|
# vim: ft=ruby
|
||
|
|
||
|
class ModDate < ModBasic
|
||
|
@@mod_name = 'date'
|
||
|
|
||
|
def data_loop()
|
||
|
while true do
|
||
|
$panel_data[@@mod_name.to_sym] = Time.now.strftime($config['mod']['date']['format'])
|
||
|
$queue << 1
|
||
|
sleep 1
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
$workers << ModDate.new.mainloop()
|