feat: add shelly plugin (#2)

* feat: add shelly plugin

* docs: document click action

* add license

* feat: add setting to hide when there are no updates

* remove some tags

* address tags feedback

* Update tags in plugin.toml for clarity

---------

Co-authored-by: Lemmy <studio@quadbyte.net>
This commit is contained in:
Josh Slate
2026-07-14 22:55:48 -04:00
committed by GitHub
co-authored by Lemmy
parent aea4b526b3
commit 49761167d0
6 changed files with 343 additions and 0 deletions
+74
View File
@@ -0,0 +1,74 @@
id = "joshuaslate/shelly"
name = "Shelly"
icon = "package"
version = "1.0.0"
min_noctalia = "5.0.0"
license = "MIT"
author = "joshuaslate"
dependencies = ["shelly"]
description = "A plugin that provides a widget for displaying system update information."
tags = ["system", "arch"]
deprecated = false
[[setting]]
key = "interval"
type = "int"
label_key = "settings.interval.label"
description_key = "settings.interval.description"
default = 300
min = 0
[[setting]]
key = "notify"
type = "bool"
label_key = "settings.notify.label"
description_key = "settings.notify.description"
default = false
[[service]]
id = "update_poller"
entry = "poller.luau"
[[widget]]
id = "shelly"
entry = "widget.luau"
[[widget.setting]]
key = "hide_when_up_to_date"
type = "bool"
label_key = "settings.hide_when_up_to_date.label"
description_key = "settings.hide_when_up_to_date.description"
default = false
[[widget.setting]]
key = "color"
type = "color"
label_key = "settings.color.label"
description_key = "settings.color.description"
default = "on_surface"
[[widget.setting]]
key = "glyph"
type = "glyph"
label_key = "settings.glyph.label"
description_key = "settings.glyph.description"
default = "package"
[[widget.setting]]
key = "glyph_color"
type = "color"
label_key = "settings.glyph_color.label"
description_key = "settings.glyph_color.description"
default = "on_surface"
[[widget.setting]]
key = "click_action"
type = "select"
label_key = "settings.click_action.label"
description_key = "settings.click_action.description"
default = "open_gui"
options = [
{ value = "none", label_key = "settings.click_action.options.none" },
{ value = "open_gui", label_key = "settings.click_action.options.open_gui" },
{ value = "open_updater", label_key = "settings.click_action.options.open_updater" }
]