Artificial Intelligence 0 Report post Posted November 27, 2008 Made this launcher. The idea is that it replace compiz with kwin, then launch the game. When exiting the game it should turn compiz back on. But the problem is it turn compiz on right after the game is launched. kwin --replace & sh -c "cd ~/.Games/TitanAttacks && javaws titanattacks.jnlp" & compiz --replace & Quote Share this post Link to post Share on other sites
neddie 0 Report post Posted November 27, 2008 Might be too simple an idea, but.... shouldn't you have two ampersands && before your call to compiz --replace ? Otherwise they'll just run in parallel. Quote Share this post Link to post Share on other sites
Artificial Intelligence 0 Report post Posted November 27, 2008 Tried that same result. :( Quote Share this post Link to post Share on other sites
Steve Scrimpshire 0 Report post Posted February 2, 2009 You've tried replacing the second one? How about both? kwin --replace && sh -c "cd ~/.Games/TitanAttacks && javaws titanattacks.jnlp" && compiz --replace & Quote Share this post Link to post Share on other sites