this post was submitted on 15 Nov 2023
38 points (97.5% liked)

Linux

47361 readers
1741 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
all 18 comments
sorted by: hot top controversial new old
[–] smpl@discuss.tchncs.de 23 points 10 months ago* (last edited 10 months ago) (1 children)

GNOME Shell 45 moved to ESM (ECMAScript modules). That means you MUST use the standard import declaration instead of relying on the previous imports.* approach.

https://gjs.guide/extensions/upgrading/gnome-shell-45.html

So the imports in your extensions is changed from:

const Clutter = imports.gi.Clutter;
const Gio = imports.gi.Gio;
const Main = imports.ui.main;
const Volume = imports.ui.status.volume;

to

import Clutter from 'gi://Clutter';
import Gio from 'gi://Gio';
import * as Main from 'resource:///org/gnome/shell/ui/main.js'
import * as Volume from 'resource:///org/gnome/shell/ui/status/volume.js';
[–] dysprosium@lemmy.dbzer0.com 5 points 10 months ago (1 children)

well that's what I tried, but how would I know where Volume is located in the path 'gi:// ... '. Is there any way of browsing / exploring the jave files to that I can actually know what the path is?

[–] smpl@discuss.tchncs.de 7 points 10 months ago (1 children)

I edited my comment with an example for your code and my best advice for figuring out the path of gnome shell imports is by browsing /usr/share/gnome-shell/js/, the docs are not very helpful.

[–] dysprosium@lemmy.dbzer0.com 5 points 10 months ago (2 children)

Aha I see. Except I'm not sure if the path /usr/share/gnome-shell/js/ is correct? The folder/file js does not exist on my end.

[–] smpl@discuss.tchncs.de 7 points 10 months ago

Just to clarify. The gi:// resources are GObject Introspection modules which are used for multilanguage bindings to native libraries. On my system, GI modules are found in /usr/share/gir-1.0/ . They're just imported by name and sometimes version using gi:// (there are examples in the link in my first comment).

As I don't have Gnome installed I can't be sure of the path to gnome shell modules imported using resource://, but it's probably the path I wrote, but without js/.

[–] smpl@discuss.tchncs.de 3 points 10 months ago

It is very likely the wrong path, I just extrapolated the path from the gnome-shell git repo. I don't use Gnome myself, I'm on the enemy team using LXDE on Devuan ;)

[–] joyjoy@lemm.ee 9 points 10 months ago (1 children)

FYI There's an active fork that supports Gnome 45.

[–] dysprosium@lemmy.dbzer0.com 6 points 10 months ago (1 children)

Ah good. I couldn't find any. But still, I'm wondering how to port extensions. I've got more, even some self-made.

[–] joyjoy@lemm.ee 4 points 10 months ago

I would suggest looking at the GNOME developer guide.

[–] manokox400@sh.itjust.works 2 points 10 months ago (1 children)

What's the use case of this extension? It might be too confusing for the users.

[–] dysprosium@lemmy.dbzer0.com 3 points 10 months ago (1 children)

to scroll on the top panel to change volume, is the use case of course. I put the github link for reference.

I think only problem lies with the last line. Importing Volume is done differently now.

[–] RenardDesMers@lemmy.ml 1 points 10 months ago (1 children)

Do I miss something? I already can do that in the latest fedora natively.

[–] dysprosium@lemmy.dbzer0.com 1 points 10 months ago (2 children)
[–] RenardDesMers@lemmy.ml 1 points 10 months ago (1 children)

Ah I see now way you wanted the first extension. Natively you have to scroll on the right part of the panel around the volume icon to change the volume. Not in the middle of the panel

[–] dysprosium@lemmy.dbzer0.com 1 points 10 months ago (1 children)

yeah okay so that's the same on GNOME on every distro. The icon is too small so it takes too long to get the mouse just right just to change the volume a bit.

[–] RenardDesMers@lemmy.ml 1 points 10 months ago

You don't have to be exactly on the icon iirc, just on the right most component of the panel.

[–] RenardDesMers@lemmy.ml 1 points 10 months ago

No, the extension is needed for this