diff --git a/js/ui/shellDBus.js b/js/ui/shellDBus.js index 6657b35ee..1fc050052 100644 --- a/js/ui/shellDBus.js +++ b/js/ui/shellDBus.js @@ -20,6 +20,9 @@ const GnomeShellIface = + + + @@ -111,6 +114,21 @@ const GnomeShell = new Lang.Class({ return [success, returnValue]; }, + ShowOSD: function(params) { + for (let param in params) + params[param] = params[param].deep_unpack(); + + let icon = null; + if (params['icon']) + icon = Gio.Icon.new_for_string(params['icon']); + + Main.osdWindow.setIcon(icon); + Main.osdWindow.setLabel(params['label']); + Main.osdWindow.setLevel(params['level']); + + Main.osdWindow.show(); + }, + GrabAcceleratorAsync: function(params, invocation) { let [accel, flags] = params; let sender = invocation.get_sender();