aboutsummaryrefslogtreecommitdiff
path: root/plugins/statusclock.lua
diff options
context:
space:
mode:
authorjgmdev <jgmdev@gmail.com>2022-05-24 19:29:50 -0400
committerjgmdev <jgmdev@gmail.com>2022-05-24 19:29:50 -0400
commit35e947d1933613bb0b5a1488bf0fa4587f98ef7d (patch)
tree07d2515f44db03b1e865f6aef6adfd12b118890b /plugins/statusclock.lua
parentc1f3671e2a8defbc67d1e77c72d5866f2825cdb5 (diff)
downloadlite-xl-plugins-35e947d1933613bb0b5a1488bf0fa4587f98ef7d.tar.gz
lite-xl-plugins-35e947d1933613bb0b5a1488bf0fa4587f98ef7d.zip
added config_spec and other plugin compatibility fixes.
Diffstat (limited to 'plugins/statusclock.lua')
-rw-r--r--plugins/statusclock.lua37
1 files changed, 36 insertions, 1 deletions
diff --git a/plugins/statusclock.lua b/plugins/statusclock.lua
index d39ca63..6d37b37 100644
--- a/plugins/statusclock.lua
+++ b/plugins/statusclock.lua
@@ -6,8 +6,43 @@ local common = require "core.common"
local StatusView = require "core.statusview"
config.plugins.statusclock = common.merge({
+ enabled = true,
time_format = "%H:%M:%S",
- date_format = "%A, %d %B %Y"
+ date_format = "%A, %d %B %Y",
+ -- The config specification used by the settings gui
+ config_spec = {
+ name = "Status Clock",
+ {
+ label = "Enabled",
+ description = "Show or hide the 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:clock"):show()
+ else
+ core.status_view:get_item("status:clock"):hide()
+ end
+ end)
+ end
+ },
+ {
+ label = "Time Format",
+ description = "Time specification defined with Lua date/time place holders.",
+ path = "time_format",
+ type = "string",
+ default = "%H:%M:%S"
+ },
+ {
+ label = "Date Format",
+ description = "Date specification defined with Lua date/time place holders.",
+ path = "date_format",
+ type = "string",
+ default = "%A, %d %B %Y",
+ }
+ }
}, config.plugins.statusclock)
local time_data = {