Customised Workspaces enables creating isolated and customised workspaces. * Choose a different background image for each workspace * Your dash will have unique favourite applications on each workspace * Optionally isolate running applications to only appear on the dash in their respective workspace * Optionally show workspace information and actions in the overview * Set each customised workspace to autoload on specific workspaces * Hide the extension once you've configured your preferences to enjoy seamlessly upgraded workspaces in gnome shell Please do not leave a comment for issues and instead report it here: https://github.com/blipk/Customised-Workspaces/issues
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
70 | Active |
69 | Inactive |
68 | Inactive |
67 | Inactive |
66 | Active |
65 | Inactive |
64 | Inactive |
63 | Inactive |
62 | Rejected |
61 | Rejected |
60 | Active |
59 | Inactive |
58 | Inactive |
57 | Inactive |
56 | Rejected |
55 | Active |
54 | Active |
53 | Active |
52 | Rejected |
51 | Active |
50 | Active |
49 | Active |
48 | Rejected |
47 | Active |
46 | Active |
45 | Active |
44 | Active |
43 | Active |
42 | Active |
41 | Active |
40 | Active |
39 | Rejected |
38 | Rejected |
37 | Rejected |
36 | Inactive |
35 | Rejected |
34 | Inactive |
33 | Rejected |
32 | Rejected |
31 | Inactive |
30 | Active |
29 | Active |
28 | Inactive |
27 | Inactive |
26 | Inactive |
25 | Rejected |
24 | Rejected |
23 | Rejected |
22 | Active |
21 | Inactive |
20 | Rejected |
19 | Inactive |
18 | Rejected |
17 | Rejected |
16 | Active |
15 | Rejected |
14 | Inactive |
13 | Inactive |
12 | Rejected |
11 | Rejected |
10 | Rejected |
9 | Rejected |
8 | Inactive |
7 | Inactive |
6 | Rejected |
5 | Rejected |
4 | Rejected |
3 | Rejected |
2 | Inactive |
1 | Rejected |
1. As mentioned on #1 on previous review, line 104 `extension.js` should be null out the global variable not setting that with `this` again. 2. #6 from previous review hasn't been addressed here. You shouldn't use `eval` like that anymore since we have `InjectionManager` in 45. 3. As mentioned on #3 on previous review, line 35 should be local variable not a property. You can still attach it to the window as we mentioned in the docs: [Extension Guide: Prefs](https://gjs.guide/extensions/development/preferences.html#prefs-js) 4. #4 from previous review hasn't been addressed here. as mentioned `getSettings()` should only be used for your own extension settings. Use `Gio.Settings`: instead. For example: ```js new Gio.Settings({schema_id: 'org.gnome.desktop.background'}); ```