2

Is there any way to change the Alt+Tab speed to show up to instant in Ubuntu 17.10? I previously used 16.04 and I was somehow able to adjust the speed with compiz I believe, but since Ubuntu 17.10 uses GNOME 3, I can't find any option or way to reduce the 0.2 seconds or so that the Alt+Tab combination actually takes to show up.

Zanna
  • 72,312

1 Answers1

5

To fix this you could install a GNOME Shell extension. You can find a short tutorial on how to do this here: How do I install and manage GNOME Shell extensions? or this external link.

Basically once you have installed the GNOME Shell integration add-on for your favorite browser and the GNOME Shell integration for Chrome on your system - go to extensions.gnome.org and search for

Alt-Tab Switcher Popup Delay Removal by xhfhope

or go directly to

https://extensions.gnome.org/extension/1317/alt-tab-switcher-popup-delay-removal/

and install the extension (you should only need to click on the switch and turn it "on"). Now the Alt-Tab delay should be gone.

I don't even understand why this delay exists. Basically, what the extension does is the following (I'm not the author of this extension):

function init(){
    defaultValue = imports.ui.switcherPopup.POPUP_DELAY_TIMEOUT;
}

function enable(){
    imports.ui.switcherPopup.POPUP_DELAY_TIMEOUT = 0;
}

function disable(){
    imports.ui.switcherPopup.POPUP_DELAY_TIMEOUT = defaultValue;
}
pomsky
  • 70,557