aboutsummaryrefslogtreecommitdiff
path: root/plugins/smallclock.lua
blob: e97515245a0336c062adafab23ef0b8b222df1d1 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
-- mod-version:3
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.smallclock = common.merge({
  enabled = true,
  clock_type = "24",
	-- The config specification used by the settings gui
  config_spec = {
    name = "Small Clock",
    {
      label = "Enabled",
      description = "Show or hide the small clock 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:small-clock"):show()
          else
            core.status_view:get_item("status:small-clock"):hide()
          end
        end)
      end
    },
    {
      label = "Clock Type",
      description = "Choose between 12 or 24 hours clock mode.",
      path = "clock_type",
      type = "selection",
      default = "24",
      values = {
        {"24 Hours", "24"},
        {"12 Hours", "12"}
      }
    }
  }
}, config.plugins.smallclock)

local time = ""

local last_time = os.time()
local function update_time()
  if os.time() > last_time then
    local h = config.plugins.smallclock.clock_type == "24"
      and os.date("%H") or os.date("%I")
    local m = os.date("%M")
    time = string.format("%02d:%02d", h, m)
    last_time = os.time()
  end
end

core.status_view:add_item({
  name = "status:small-clock",
  alignment = StatusView.Item.RIGHT,
  get_item = function()
    update_time()
    return {style.accent, time}
  end,
  position = -1,
  separator = core.status_view.separator2
})