Skip to content

Instantly share code, notes, and snippets.

@autarch
Created May 11, 2014 21:07
Show Gist options
  • Save autarch/64c87148b7d705908c6e to your computer and use it in GitHub Desktop.
Save autarch/64c87148b7d705908c6e to your computer and use it in GitHub Desktop.
const Main = imports.ui.main;
let popup;
function init() {
popup = Main.wm._showWorkspaceSwitcher;
}
function enable() {
Main.wm._showWorkspaceSwitcher = function(a, b, c) {};
}
function disable() {
Main.wm._showWorkspaceSwitcher = popup;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment