Skip to content

Commit

Permalink
Allow focusing a window via DesktopIntegration (#1817)
Browse files Browse the repository at this point in the history
Co-authored-by: Leo <[email protected]>
  • Loading branch information
leolost2605 and lenemter authored Mar 12, 2024
1 parent 2f4fe15 commit 0a2d54f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/DesktopIntegration.vala
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,17 @@ public class Gala.DesktopIntegration : GLib.Object {
return (owned) returned_windows;
}

public void focus_window (uint64 uid) throws GLib.DBusError, GLib.IOError {
var apps = Gala.AppSystem.get_default ().get_running_apps ();
foreach (unowned var app in apps) {
foreach (weak Meta.Window window in app.get_windows ()) {
if (window.get_id () == uid) {
window.activate (wm.get_display ().get_current_time ());
}
}
}
}

public void show_windows_for (string app_id) throws IOError, DBusError {
if (wm.window_overview == null) {
throw new IOError.FAILED ("Window overview not provided by window manager");
Expand Down

0 comments on commit 0a2d54f

Please sign in to comment.