Skip to content

Instantly share code, notes, and snippets.

@bmcculley
Created April 4, 2015 13:55
Show Gist options
  • Save bmcculley/f3c94912eaeb404925bc to your computer and use it in GitHub Desktop.
Save bmcculley/f3c94912eaeb404925bc to your computer and use it in GitHub Desktop.
class TestOSD {
public static void main(String[] args) throws Exception{
String[] cmd = { "/usr/bin/notify-send",
"-t",
"10000",
"Hello OSD This is my first programmatic OSD notification"};
System.out.println("This is said : Hello OSD");
Runtime.getRuntime().exec(cmd);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment