Personal noctalia plugins collection

Fix battery widget not showing percentage and update author

Use BatteryService.primaryDevice instead of non-existent displayDevice
property, which caused the widget to never detect the battery.
Also update weekly-calendar author to DzmingLi and remove repository link.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+2 -3
+1 -1
battery/BarWidget.qml
··· 20 20 property int sectionWidgetsCount: 0 21 21 22 22 // Battery state from BatteryService 23 - readonly property var selectedDevice: BatteryService.displayDevice 23 + readonly property var selectedDevice: BatteryService.primaryDevice 24 24 readonly property bool isReady: BatteryService.isDeviceReady(selectedDevice) 25 25 readonly property real percent: isReady ? BatteryService.getPercentage(selectedDevice) : -1 26 26 readonly property bool isCharging: isReady ? BatteryService.isCharging(selectedDevice) : false
+1 -2
registry.json
··· 6 6 "name": "Weekly Calendar", 7 7 "version": "1.1.0", 8 8 "official": false, 9 - "author": "dodaars", 9 + "author": "DzmingLi", 10 10 "description": "A weekly calendar plugin with location display and event creation via EDS.", 11 - "repository": "https://github.com/DzmingLi/noctalia-weekly-calendar", 12 11 "minNoctaliaVersion": "4.2.3", 13 12 "license": "MIT", 14 13 "tags": ["Bar", "Panel", "Productivity"],