11

I'm using Ubuntu 18.04 LTS, just wondering if it's possible to make my workspaces horizontal instead of vertical? (Preferably without losing my swiping gestures to switch workspaces)?

pomsky
  • 68,507
Ben R
  • 113

1 Answers1

13

workaround

install "Workspace grid" gnome shell extension (https://github.com/zakkak/workspace-grid) go to settings and make number of rows and columns as per your wish.

enter image description here

to make the work spaces static, run the below command
gsettings set org.gnome.mutter dynamic-workspaces false

example:

$ gsettings get org.gnome.mutter dynamic-workspaces
true
$ gsettings set org.gnome.mutter dynamic-workspaces false
$ 

when dynamic-workspaces true enter image description here

when dynamic-workspaces false enter image description here

you can use the default keyboard shortcuts or set your preferred ones..

enter image description here

hack4mer
  • 115
PRATAP
  • 22,460
  • Nice. Although, I have a 2-screen setup. It only switches on the screen with the "docker" – Marcel Mar 12 '20 at 09:11
  • Unfortunately, the GNOME shell extension linked in this answer is no longer being maintained and the code repo mentions "Workspace Matrix" (https://github.com/mzur/gnome-shell-wsmatrix) as its replacement. – TheDavidJohnson Feb 24 '22 at 15:45