Customize your lock screen: control blur, custom text message, style clock/date size and fonts, and more.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-L-002 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
extension.js:58
this._customTextLabel = new St.Label({
text: customText,
style_class: 'lockscreen-custom-text'
})
EGO-L-005 warning
owned object references should be released in disable()
Owned references that are cleaned up in `disable()` should also be released with `null` or `undefined`.
extension.js:58
this._customTextLabel = new St.Label({
text: customText,
style_class: 'lockscreen-custom-text'
})
EGO-M-008 warning
extensions using unlock-dialog must document it in disable() comments
Extensions using `unlock-dialog` should document the reason in `disable()` comments.
extension.js:176
disable() {
// Disconnect settings change listener
if (this._settingsChangedId) {
this._settings.disconnect(this._settingsChangedId);
this._settingsChangedId = null;
}
// Restore original prototype methods
if (origInit) {
| Version | Status |
|---|---|
| 1.1.0 (5) | Unreviewed |
| 1.1.0 (4) | Rejected |
| 1.0.0 (3) | Active |
| 1.0.0 (2) | Rejected |
| 1.0.0 (1) | Rejected |
1. Please fix the issues mentioned in Shexli. 2. Remove line 198 `extension.js`. Not needed.
3. Remove `user` from `session-modes`. Not needed for your extension.