0

I have ubuntu 18.04 and am only a beginner. So, is it possible to change to a new workspace so that when I open my browser, a fully new instance of the browser opens? Is there any way to achieve that? I searched google and could not find it in a first glance.

Edit: I meant firefox. Yes, those answered the questions. I had not found them initially. Thank you.

  • What do you mean by "my browser"? A web browser like Firefox? A file browser like Nautilus? Some other personal "my browser"? – mikewhatever Jun 29 '19 at 21:11
  • I suspect your issue is same as this: https://askubuntu.com/q/992558/480481, but it's not completely clear. Please [edit] your question and clarify. – pomsky Jun 30 '19 at 01:03

1 Answers1

1

Ubuntu desktop (based on Gnome Shell) uses a "Launch or Switch" paradigm. If you click a launcher in the dock, the program is started if it is not yet running. If the program is running already, you will switch to it, even if it is on another workspace.

Still, you can deliberately choose to launch a new instance instead of switching to an already running instance: hit the Ctrl key while clicking the launcher, or middle-click the launcher.

Yet, it is easy to change the behaviour to what you want

Open the terminal, and execute following command to change a Dock setting.

gsettings set org.gnome.shell.extensions.dash-to-dock isolate-workspaces true

Now, the system will behave like you prefer. The Dock will only show icons for programs running on the current workspace. It also will always show all your pinned applications, ready to be launched. Now also your Browser will launch on the new workspace, even if it is already running on another workspace.

To undo this setting, just reset the setting to its default:

gsettings reset org.gnome.shell.extensions.dash-to-dock isolate-workspaces
vanadium
  • 88,010