Advertisement
Guest User

Untitled

a guest
Jan 5th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.32 KB | None | 0 0
  1. void main(string[] args) {
  2. // Declaring variables
  3. var msg = "SAS";
  4. var notification = new GLib.Notification (_("Synapse - Pastebin"));
  5. notification.set_body (msg);
  6. //var gicon = GLib.Icon.new_for_string ("synapse");
  7. //notification.set_icon (gicon);
  8. GLib.Application.get_default ().send_notification (null, notification);
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement