Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

Gnome 3 (Gnome Shell) JavaScript/CSS engine

I am wondering, which type and version of JavaScript/CSS engines is using Gnome 3 aka Gnome Shell ? Is there any information about current version, etc ?
4
votes
1answer
101 views

How do I get a list of processes in a gnome-shell-extension?

I am writing a gnome-shell-extension and I am trying to get a list of all the processes that are currently running. I have tried using glibtop, which has a function for retrieving processes ...
3
votes
1answer
199 views

Disable default Gnome Shell Super Key Mapping

Gnome Shell by default uses the Super (Windows) key to display the activities overview. But I'd prefer to use the Super key to invoke Synapse. Right now I have to press Super+Super+Spacebar in order ...
3
votes
1answer
82 views

Is there an API for setting user profile icon/tile pictures for Gnome 3?

I am trying to programmatic-ally set the Gnome 3/GDM 3 user profile/tile/face picture for a user's account in Gnome3/GDM. This is my first attempt at a simple program for Linux and I'm unfamiliar with ...
2
votes
1answer
86 views

Why does this JS snippet makes gnome shell explode?

I'm developing a gnome shell extensions, which should execute a Python program. It includes: GLib.spawn_sync(null, ['python', '-c', '"import os"'], null, 4, null) This line make the entire shell ...
2
votes
1answer
363 views

How to debug GNOME Shell extensions? Is there any tool for that?

So I'm a web developer and would like to develop an extension for GNOME Shell. I found it really easy to step in the development process but I still can't figure out how to debug my extensions. Are ...
2
votes
0answers
70 views

Using C libraries from a Gnome-Shell extension

I want to write a Gnome-Shell extension that can tell how long a session has not received any user input. I know that calling XScreenSaverQueryInfo will give me that information, but I can't find a ...
1
vote
0answers
87 views

Use of Shell object in Gjs

I am writing a gtk+ app using Gjs ( Gnome JavaScript bindings ) As there are no documents available i am reading the sources of gnome-shell JavaScript's . In my app i need to get access to ...
1
vote
2answers
545 views

How to start writing Gnome Shell extensions

I have found it's very hard to find documentation about Gnome Shell Extensions. I found some bits on Gnome Wiki (and it's first-level links), but it's not much: ...
1
vote
1answer
98 views

Persistent Logging in Gnome-Shell-Extension development?

I'm trying around with the Javascript-based bindings to build an own Gnome-Shell-Extension which just embeds an webkitview. But the following 3 lines let completely crash the gnome-shell (top panel ...
1
vote
0answers
122 views

how to import seed module in javascript gnome-shell extension

It's quite simple: My js is part of a gnome-shell extension and contains several import lines: [...] const Gettext = imports.gettext; const MessageTray = imports.ui.messageTray; ...
1
vote
2answers
120 views

JavaScript Glib.spawn_async stdout file descriptor

I want to spawn a process using spawn_async in the GLib bindings in javascript in a gnome3 shell-extension. I need something like the "standard_output=True" parameter in the python doc ...
0
votes
0answers
18 views

How to add arguments to links in gnome-shell menu

I'm using gnome-shell with Ubuntu 11.10. At the left edge there is menu with icons. Where can I edit the command that is launched after clicking them? For example, there is gvim icon and I want it to ...
0
votes
1answer
54 views

Gnome 3 extensions resources

I just installed gnome 3 and I added a few extensions, I noticed they are coded in JS but I don't fully understand how they work. What I am really interested right now is learning how I could add a ...
0
votes
0answers
279 views

Hacking the GNOME 3 shells application Dock

I saw this cool photo for a gnome 3 theme as you can see the application "dock" displays somewhat differently then is norm. This theme no longer appears this way, the dock is in its usual place. ...
0
votes
2answers
464 views

gnome shell extension stylesheet not loading

i'm trying to develop a gnome shell extension and I've created the "Hello World" extension which is created automatically with gnome-shell-extension-tool --create-extension It creates 3 files: ...