I want to step into extension development for Gnome Shell, but I can't seem to understand how I do a few tasks in Looking Glass lg
to actually debug my stuff.
global.log("hi");
into LG, it throws me back r(...) = undefined
. Why?Main.ExtensionSystem.loadExtension()
but it returns undefined
no matter if I give it the extension's name string or the extension's object.If I had these resources I could at least start to work on updating some extensions for newer Gnome versions. I would not ask these simple questions if they would be nicely explained somewhere but getting all the info seems really tough (I've googled for hours).
1: LookingGlass is basically a GJS console. It allows you to execute and test lines of GJS, grab and manipulate objects and use r(...)
to use results in following commands.
The reason you get r(...) = undefined
is because log(String);
does not return anything, thus the result is undefined
.
2: Either log throughout init()
and enable()
, then check where it breaks and try to pinpoint the breaking line using log or commenting out lines of code (although the culprit is probably defined in the general logging, described in the section at the bottom).
3: There is no official documentation. They have some outdated tutorials for GNOME Shell 3.4 with a small difference explanation to 3.6, a few pages on the C(++) ends of the libraries you use (most of the functions, variables and constants use the same names though), but for any real info you'd need experience, digging through other GNOME and shell extension code or some unofficial sources. Unofficial sources aren't always up to date, however.
Generally Debugging gnome can be done in several ways.
- use the log()
function and follow journalctl in a commandline, check either GNOME or JS, use journalctl -f | grep -i js
(or use grep -i gnome
). You will see some warnings no matter what, but most mention what extension they're from. This is nice and works on all distros implementing systemd
- Or log a specific process that is a part of GNOME like journalctl /usr/bin/gnome-session -f -o cat
, just beware that some distros and versions log to different files and old GNOME versions often log to whatever your display manager logs to.
- use the official (albeit tricky) manner of logging: GNOME on debugging.
I personally couldn't get this to work.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With