gnome-shell-system-monitor-applet
gnome-shell-system-monitor-applet copied to clipboard
Bug: super(); on line 286 (affects Ubuntu 20.04.2)
Fresh install of Ubuntu 20.04.2 with updates. (Gnome 3.36.8). I installed the necessary .debs, then tried to install with Chrome, but got an error icon and the applet would not appear in the titlebar.
In the comments section of https://extensions.gnome.org/extension/120/system-monitor/
michel.calheiros posted this one-liner fix, and it worked for me. Please make this part of the distro:
could not load the extension in GNOME 3.36.4 @ Pop OS 20.04 with nvidia drivers after checking the logs with sudo journalctl /usr/bin/gnome-shell | grep 'system-monitor' i found out that the problem is in this file ~/.local/share/gnome-shell/extensions/[email protected]/extension.js:286 i just needed to change the line 286 to this: super();
i wont be sending a PR because I tested using the same gnome version in a clean ubuntu and the error didn't appear
// Line 286 of extension.js:
// This breaks my Gnome:
super({styleClass: 'prompt-dialog'});
// This works on my Gnome:
super();