On 03/17/2008 12:49 AM, Ty Tower wrote:
have a start up script and I want to start email on page 1 and
browser on
page 2
#!
sleep 5s
Desktop 1
kmail
Desktop 2
firefox
If I am on page 4 when sleep ends it kicks off kmail on page 1 and
firefox on
page 4.
Can I change this?
Yes, install wmctrl. It allows you to automate desktop switching and the
placing of applications on desktops. For example, you might do something
like this:
#!/bin/sh
kmail &
firefox &
sleep 5s
wmctrl -r kmail -t 0
wmctrl -r firefox -t 1
I hope this helps.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]