Skip to content

Instantly share code, notes, and snippets.

@resarahadian
Created January 2, 2014 07:38
Show Gist options
  • Save resarahadian/8216054 to your computer and use it in GitHub Desktop.
Save resarahadian/8216054 to your computer and use it in GitHub Desktop.
Membuat Notify Message Java Swing di Elementary OS
public class notifyJava
{
public static void main(String[] ar) throws java.io.IOException
{
String note[] = {"notify-send","Java Swing Notify di Elementary OS"};
Runtime.getRuntime().exec(note);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment