Add QR Code Encoder plugin (#226)

* init

* feat: notify options; all, minimal and none

* update: plugin.toml

* update: add README

* feat: add button toggle

* feat: add configurable glyph

* fix: valid image radius

* fix: shell escape entry

* feat: add settings

* update: add thumbnail.webp

* feat: add titlebar and titlebar toggle

* feat: add custom image widget setting, reorder keys

* fix: auto-size image with titlebar

* update: README (new settings)

* fix: lowercase correction_level label keys

* fix: file type and move shellEscape to the cmd
This commit is contained in:
Yocraft-2000
2026-08-03 08:17:21 -04:00
committed by GitHub
parent 56edefe993
commit 8277d1bc6d
6 changed files with 433 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
local image = noctalia.getConfig("custom_image")
if image ~= "" and image ~= nil then
barWidget.setImage(image)
else
barWidget.setGlyph(noctalia.getConfig("glyph"))
end
barWidget.setTooltip(noctalia.tr("widget.tooltip"))
function onClick()
noctalia.togglePanel("yocraft/qrcode:panel")
end