My apologies to all, if this is in the wrong group.
We’d like to use Fedora 23 in Kiosk mode, but there is was a recently added left edge swipe feature that was added to Gnome Shell (https://github.com/GNOME/gnome-shell)that cannot be disabled…
I am writing a gnome-shell extension that shows the current balance of prepaid-cards like phones (or electricity). As this needs credentials for the given services, I do not want to store the password in gsettings, but as entry in gnome…
I will receive {x,y} data from the network corresponding to a pixel coordinate.
I would like to create clutter event or at least inform the system (clutter stage) there is a mouse move to the received {x,y} data.
I had a look on the unofficial GJS…
I am trying to animate an existing actor in gnome-shell. I have tried in a few ways and each time I am able to change the actor location but I am unable to change the actor size.
This is one of the ways I have tried and the actor is changing it's…
My goal is to start a new GtkApplication when the user presses a button in the topbar of Gnome.
The button in the topbar can be done by a gnome-shell-extension, but I have difficulties opening up the GtkApplication.
Therefore, for now the following…
I'm working on gnome-extensions (javascript) and i would like to know if it's possible to fetch/capture a desktop/screen object to apply modifications on it.
For example getting a window i use this code:
let app= app_system.get_running();
for(i = 0;…
I've created a very simple chat (one to one chat) which works by just sending TCP-packets. The way it works at the moment is just by sending and receiving messages in the terminal. I would like to create a simple GUI that shows dialogs (modal i…
The wrappers for GJS/Gnome don't seem to expose the "minimized" property.
There is a get_maximized(), but this doesn't seem to return the information I need.
Using the JavaScript bindings for Gnome Applets, is there a way to get whether a MetaWindow…
So I'm writing an extension, that has some preferences.
I store the preferences in GSettings, using the convenience.js (as described here).
The related code looks like this:
const SETTINGS_APP_SORT_MODE = 'sort-mode';
this._settings =…
Recently I am getting started with GNOME extensions development. By executing gnome-shell-extension-tool --create-extension in terminal I have created hello world extension but when I change the code to build a pop-up like extension I am getting…
This must be some basic misunderstanding (on my side) on how gnome-shell extensions work. I struggled to find some documentation but, alas, it seems a bit sparse.
I want to write a simple extension to toggle focus mode from FFM to click-to-focus…
Is there any way to have a step by step debugger and variable browser in gnome shell ?
I had a look at the wiki page :
https://wiki.gnome.org/GnomeShell/Extensions
and I already tryed to find this in look glass :…
I have an array stored as a GVariant of type a(ss) in GSettings, that I want to use in a Cinnamon Applet. I can retrieve the value successfully using the following code:
let schema = schema_source.lookup(SCHEMA_NAME, false);
let settings = new…
I'm trying to implement a drag and drop system in the extension I'm developing but I'm running into a problem.
As far as I can tell, dnd is implemented by making a draggable object like this
let draggable = DND.makeDraggable(this.actor)
where…