Organise your computer by replacing user folders with symlinks to project folders. This extension is the user interface for the wechsel cli tool. Wechsel is a simple tool that helps you by creating individual Download, Desktop, ... folders for each project. It replaces the original folders with symlinks to the folders of the current active project. Like this the random files you download, will be placed in the Download folder they belong to. This Extension depends on the wechsel cli tool, which you can find here: https://github.com/JustSomeRandomUsername/wechsel
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
12 | Active |
11 | Rejected |
10 | Inactive |
9 | Rejected |
8 | Inactive |
7 | Inactive |
6 | Active |
5 | Active |
4 | Active |
3 | Rejected |
2 | Rejected |
1 | Rejected |
1. Please remove 45.1 and 45.5 from `metadata.json`. 45 would be enough. 2. Please remove `package.json`: [EGO Review Guidelines: unnecessary files](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#don-t-include-unnecessary-files) 3. Please use async subprocess (line 462 `extension.js`). We have some async spawns in [util](https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/misc/util.js) that you can use. 4. You already have `this.getSettings()` in the entry point so line 566 `extension.js` not needed. 5. Don't create gsettings instance multiple times (line 518 and 525 `extension.js`). and you already have the settings in `this.settings` (line 513 `extension.js`). 6. Also null out in disable: ```js this.settings = null; ``` [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects) 7. No need to check. Just simply remove the key bindings (line 551 and 554 `extension.js`). 8. The export is not needed (line 584 `extension.js`). 9. Add a more descriptive description to the `metadata.json`. 10. When you export the dbus it should be unexported on disable (line 538 `extension.js`). 11. Add to the description that this extension is using `wechsel` as its dependency. If you need any help with your extension you can ask us on: - [GNOME Extensions Matrix Channel](https://matrix.to/#/#extensions:gnome.org) - IRC Bridge: irc://irc.gimpnet.org/shell-extensions