harshadgavali / gnome-gesture-improvements

Touchpad gesture improvements for GNOME on Wayland/X11
https://extensions.gnome.org/extension/4245/gesture-improvements/
GNU General Public License v3.0
322 stars 40 forks source link

App switching should consider user preference for multitasking across workspaces #177

Closed wroyca closed 1 year ago

wroyca commented 1 year ago

App switching ought to align with the user's preferences for multitasking. At present, only the apps from the present workspace are displayed, neglecting the user's app switching preference to encompass apps from all workspaces:

image

harshadgavali commented 1 year ago

Hi @wroyca, Although extension calls it app-switching, it's actually window-switching. GNOME has two different settings for both, but setting for window-switching isn't exposed through GUI.

Using following command you can enable hidden setting to include all windows in window-switcher.

gsettings set org.gnome.shell.window-switcher current-workspace-only false

This is currently documented in README of this repository, but I decided to follow GNOME and not expose this in extension's settings.

wroyca commented 1 year ago

Hi @wroyca, Although extension calls it app-switching, it's actually window-switching. GNOME has two different settings for both, but setting for window-switching isn't exposed through GUI.

Using following command you can enable hidden setting to include all windows in window-switcher.

gsettings set org.gnome.shell.window-switcher current-workspace-only false

This is currently documented in README of this repository, but I decided to follow GNOME and not expose this in extension's settings.

Whoops, I totally missed that - thank!