Fork of spin83's Multi Monitors. This extension is not going to be maintain anymore. Need to work on real project with benefits for now. Fork it if you want. The donate button is still functioning though lol...... Cheerss
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
| Version | Status |
|---|---|
| 31 | Active |
| 30 | Rejected |
| 29 | Active |
| 28 | Rejected |
| 27 | Active |
| 26 | Rejected |
| 25 | Active |
| 24 | Rejected |
| 23 | Active |
| 22 | Rejected |
| 21 | Rejected |
| 20 | Active |
| 19 | Rejected |
| 18 | Active |
| 17 | Active |
| 16 | Active |
| 15 | Active |
| 14 | Rejected |
| 13 | Inactive |
| 12 | Inactive |
| 11 | Rejected |
| 10 | Rejected |
| 9 | Rejected |
| 8 | Rejected |
| 7 | Rejected |
| 6 | Rejected |
| 5 | Active |
| 4 | Rejected |
| 3 | Rejected |
| 2 | Active |
| 1 | Rejected |
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.
Thank you so muchhh...noted