i have a java application that's supposed to just popup .. let me do something and vanish. I have a nice little JFrame GUI working for me.
Problem is bringing it back. I want to use a 'global shortcut' to bring it back. I'm on Ubuntu 12.04 with standard jdk.
I have a shortkey assigned to an sh file which does: cd /path/to/app && java Driver
this, ofcourse, launches the app everytime. Is there a way i can send a signal to the running app (signal in the form of an .sh file which i can assign a shortcut to) to frame.setVisible(true) on? You know, to avoid relaunching the app everytime?