Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tuberry
Last active February 7, 2024 17:40
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save tuberry/dc651e69d9b7044359d25f1493ee0b39 to your computer and use it in GitHub Desktop.
Save tuberry/dc651e69d9b7044359d25f1493ee0b39 to your computer and use it in GitHub Desktop.
// by orzun
// License: GPLv3
// Install:
// mkdir -p ~/.local/share/gnome-shell/extensions/move-resize@orzun
// cp ./extension.js ./metadata.json ~/.local/share/gnome-shell/extensions/move-resize@orzun
// Usage:
// gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell/Extensions/MoveResize --method org.gnome.Shell.Extensions.MoveResize.Call "'firefox'" 1 0 0 400 800
const { Gio } = imports.gi;
const MR_DBUS_IFACE = `
<node>
<interface name="org.gnome.Shell.Extensions.MoveResize">
<method name="Call">
<arg type="s" direction="in" name="wmclass"/>
<arg type="u" direction="in" name="workspace"/>
<arg type="u" direction="in" name="x"/>
<arg type="u" direction="in" name="y"/>
<arg type="u" direction="in" name="width"/>
<arg type="u" direction="in" name="height"/>
</method>
</interface>
</node>`;
class Extension {
enable() {
this._dbus = Gio.DBusExportedObject.wrapJSObject(MR_DBUS_IFACE, this);
this._dbus.export(Gio.DBus.session, '/org/gnome/Shell/Extensions/MoveResize');
}
disable() {
this._dbus.flush();
this._dbus.unexport();
delete this._dbus;
}
Call(wmclass, workspace, x, y, width, height) {
let win = global.get_window_actors()
.map(a => a.meta_window)
.map(w => ({ class: w.get_wm_class(), title: w.get_title(), ws: w }))
.find(ws => ws.class == wmclass);
if (win) {
win.ws.change_workspace_by_index(workspace, false);
win.ws.move_resize_frame(0, x, y, width, height);
} else {
throw new Error('Not found');
}
}
}
function init() {
return new Extension();
}
{
"name": "Move & Resize",
"description": "Move and resize windows",
"uuid": "move-resize@orzun",
"shell-version": [
"41"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment