Ubuntu/ Gnome : Open an application is a specific workspace

Posted by bguiz on Super User See other posts from Super User or by bguiz
Published on 2011-01-12T01:08:53Z Indexed on 2011/01/12 1:55 UTC
Read the original article Hit count: 232

Filed under:
|
|
|
|

How do tell an application to open in a specific workspace?


More info:

I like to have my C++ IDE in workspace 2, my Java IDE in workspace 3, and my email, browser and miscellaneous in workspace four. I also use a shell script that executes upon log in:

#!/bin/bash
gnome-terminal & # WS 1
netbeans-6-9-1 & # WS2
qtcreator-2-0-1 & # WS 3
firefox & # WS 4
thunderbird & # WS 4

Of course currently it all opens in the curent workspace... Is there a way for me to specify which workspace each command should start in?

Thanks in advance!

© Super User or respective owner

Related posts about linux

Related posts about ubuntu