I am looking to create a custom launcher for the new tweetdeck (which works fine under wine).

I am currently just executing the script:

#!/bin/bash
wine  ~/.wine/drive_c/Program\ Files/Twitter/TweetDeck/TweetDeck.exe

But this has the nasty disadvantage that you cannot close the terminal that spawned the window.

Has anyone made a custom launcher for unity (with the new icon would be nice)?

link|improve this question
Any reason you can't use tweetdeck extension in google chrome? – palhmbs Jan 27 at 23:36
This requires you to run chrome ;) But yes, this is a nice alternative – wiifm Jan 30 at 10:12
feedback

1 Answer

Just add nohup and an & to that command

nohup wine  ~/.wine/drive_c/Program\ Files/Twitter/TweetDeck/TweetDeck.exe > /dev/null 2>&1 &

Probably best to use the full path with those commands, so /home/your_user rather then ~

Then make a custom launcher with that command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.