Adds a blur look to different parts of the GNOME Shell, including the top panel, dash and overview. You can support my work by sponsoring me on: - github: https://github.com/sponsors/aunetx - ko-fi: https://ko-fi.com/aunetx If you use Ubuntu, you may want to change the radius of the corner effect for Dash-to-Dock in preferences, else you may see unpleasantly mixed radii in your dock. Note: if the extension shows an error after updating, please make sure to restart your session to see if it persists. This is due to a bug in gnome shell, which I can't fix by myself.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
67 | Active |
66 | Active |
65 | Active |
64 | Active |
63 | Active |
62 | Active |
61 | Active |
60 | Active |
59 | Active |
58 | Active |
57 | Rejected |
56 | Rejected |
55 | Active |
54 | Active |
53 | Active |
52 | Active |
51 | Active |
50 | Active |
49 | Rejected |
48 | Rejected |
47 | Active |
46 | Active |
45 | Active |
44 | Active |
43 | Active |
42 | Active |
41 | Active |
40 | Rejected |
39 | Active |
38 | Active |
37 | Active |
36 | Active |
35 | Active |
34 | Active |
33 | Active |
32 | Active |
31 | Active |
30 | Rejected |
29 | Active |
28 | Active |
27 | Active |
26 | Active |
25 | Active |
24 | Active |
23 | Active |
22 | Active |
21 | Active |
20 | Active |
19 | Active |
18 | Active |
17 | Rejected |
16 | Active |
15 | Active |
14 | Active |
13 | Active |
12 | Active |
11 | Active |
10 | Active |
9 | Active |
8 | Active |
7 | Active |
6 | Active |
5 | Active |
4 | Active |
3 | Active |
2 | Active |
1 | Active |
The 'unlock-dialog' session mode was added as it allows the user to have the blur correctly set when getting out from sleep, it should not affect the bahviour of the extension in any other way. Tell me if it is not adequate in this situation.
1. You cannot create instance of objects in global scope (line 10 `components/applications.js`): - [EGO Review Guidelines: Initialization](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-initialization-for-static-resources) - [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects) 2. For session modes, I don't think that's a good reason for making it available on unlock dialog. But if you want to catch the sleep, you can do this: ```js import * as LoginManager from '../misc/loginManager.js'; let loginManager = LoginManager.getLoginManager(); loginManager.connectObject('prepare-for-sleep',() => { // before sleep }); ```