Launcher: Working clipboard plugin

This commit is contained in:
LemmyCook 2025-09-03 08:01:24 -04:00
parent 742a600e38
commit 1599ee5682
2 changed files with 192 additions and 0 deletions

View file

@ -146,6 +146,15 @@ NPanel {
} else {
Logger.error("Launcher", "Failed to load CalculatorPlugin")
}
// Load clipboard history plugin
const clipboardPlugin = Qt.createComponent("Plugins/ClipboardPlugin.qml").createObject(this)
if (clipboardPlugin) {
registerPlugin(clipboardPlugin)
Logger.log("Launcher", "Registered: clipboardPlugin")
} else {
Logger.error("Launcher", "Failed to load clipboardPlugin")
}
}
// UI