Allows customization of the date display in the panel. Might be especially useful if you're using a horizontal panel which does not at all work well with the default date display. CHANGELOG Version 5: added support for multiple Dash To Panel panels Version 6: fixed issues on earlier Gnome Shell versions Version 10: fixed clock hover style (by bomdia) Version 11: Gnome 45 update by andyholmes@github Version 12: added support for advanced formatters by bomdia@github Version 15: added text alignment choice by bomdia@github Version 16: Gnome 47 support, swatch formatter fixes by bomdia@github
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
16 | Active |
15 | Active |
14 | Rejected |
13 | Rejected |
12 | Rejected |
11 | Rejected |
10 | Active |
9 | Active |
8 | Active |
7 | Active |
6 | Active |
5 | Active |
4 | Active |
3 | Active |
2 | Active |
1 | Rejected |
1. Rejected because you are importing prefs.js into extension.js. That can cause some issues like importing unnecessary gtk, gdk, ... to GNOME Shell. Also gsettings is getting there from global scope which is the same as init: https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-init-for-initialization to fix that you need to do `this._settings = ExtensionUtils.getSettings();` in enable. 2. Add this to metadata.json: "settings-schema": "org.gnome.shell.extensions.date-menu-formatter", and you can use `ExtensionUtils.getSettings()` without setting schema id. 3. Please remove stylesheet.css since you are not using it: https://gjs.guide/extensions/review-guidelines/review-guidelines.html#don-t-include-unnecessary-files 4. Remove Lang import in extension.js If you need any help with your extension you can ask us on: GNOME Matrix channel: https://matrix.to/#/#extensions:gnome.org IRC Bridge: irc://irc.gimpnet.org/shell-extensions