Skip to content

Instantly share code, notes, and snippets.

@autarch
Last active August 29, 2015 14:01
Show Gist options
  • Save autarch/595f93fc91fe148e980d to your computer and use it in GitHub Desktop.
Save autarch/595f93fc91fe148e980d to your computer and use it in GitHub Desktop.
const windowManager = imports.ui.windowManager;
let popup;
function init() {
popup = windowManager.WindowManager.prototype['_showWorkspaceSwitcher'];
}
function enable() {
windowManager.WindowManager.prototype['_showWorkspaceSwitcher'] = function(a,b,c){return 42};
}
function disable() {
windowManager.WindowManager.prototype['_showWorkspaceSwitcher'] = popup;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment