I want to automate the workspace count mentioned in How to disable multiple workspaces on Ubuntu 22.04?
I would prefer to use gsettings
but I can't find the key.
What is the key there?
I want to automate the workspace count mentioned in How to disable multiple workspaces on Ubuntu 22.04?
I would prefer to use gsettings
but I can't find the key.
What is the key there?
You will probably want to use something like:
gsettings set org.gnome.mutter.dynamic-workspaces 1
You can use Tab auto completion to discover many of the settings
The correct command is this one:
gsettings set org.gnome.desktop.wm.preferences num-workspaces 1
Taken from here
dynamic-workspaces
usinggsettings get
and tabs. – Saeed Neamati Feb 06 '23 at 13:38