Review of "Multi Monitor Bar" version 27

Details Page Preview

Fork of spin83's Multi Monitors. Pleaseeeee donate to support this extension :). Don't forget to star the original repository! , rate and comment

Extension Homepage
https://github.com/FrederykAbryan/multi-monitors-bar_fapv2

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

Shexli (experimental)

Shexli has not produced a result yet.

All Versions

Previous Reviews on this Version

JustPerfection active
Thanks! To avoid code duplication, it's better to create a helper function or const. For example, in `utils.js` file: ```js import * as Config from 'resource:///org/gnome/shell/misc/config.js'; const [major] = Config.PACKAGE_VERSION.split('.'); export const SHELL_VERSION = Number.parseInt(major); ``` Now, you can import `utils` into the files and use `SHELL_VERSION`. Another way is to pass the value from the entry point. For example, in my extension, I do it only [in the entry point](https://gitlab.gnome.org/jrahmatzadeh/just-perfection/-/blob/835c9c1a12fd531c71c0416f44d7722607c7cfbf/src/extension.js#L77). and then pass it to the classes needing it. You can pick any of these two ways you like.
AbryanPalinoan posted a review
Thank you so muchhh...noted