Edite o arquivo /usr/share/gnome-shell/js/ui/viewSelector.js
com seu editor de texto favorito. por exemplo,
gksudo gedit /usr/share/gnome-shell/js/ui/viewSelector.js
Pesquise estas linhas (Número da linha = 469):
_switchDefaultTab: function() {
if (this._tabs.length > 0)
this._switchTab(this._tabs[0]);
},
Altere-os para:
_switchDefaultTab: function() {
if (this._tabs.length > 0) {
let appSys = Shell.AppSystem.get_default();
let allApps = appSys.get_running ();
if ( allApps.length != 0) {
this._switchTab(this._tabs[0]);
} else {
this._switchTab(this._tabs[1]);
}
}
},
E, salve e reinicie o Gnome-Shell.