0

Basically the title. Using Lubuntu 14.04.

Use case: I have two desktops, I'm in #1, I press Ctl Alt T , it opens in Desktop 2. I'm in #2, press Ctl Alt T it opens in Desktop 2.

pl_rock
  • 11,297
ksm18
  • 1

2 Answers2

1

I used compizconfig-settings-manager to open specific programs in a specific workspace. You can refer to the answer here.

However this just opens the terminal and i have to move to that work space to get to the terminal, it doesn’t do that automatically.

  • That's what the OP asked. Just to place it there. Not move to thet desktop automatically... – Fabby Aug 21 '15 at 19:27
0

You may edit ~/.config/openbox/lubuntu-rc.xml to do what you want.

  • Back up the file for safety
  • Open it in a plain text editor (such as nano or leafpad)
  • Scroll down to the end of the file. Notice that the second last line is </applications>

Just above the second last line, paste the following:

<application name="lxterminal">  
  <desktop>2</desktop>  
</application>

Save the file and run openbox --reconfigure to make the change take effect immediately.

Now, whenever you access lxterminal via CtrlAlt+T, lxterminal will open on Desktop 2 irrespective of which desktop you're currently on.

DK Bose
  • 42,548
  • 23
  • 127
  • 221