#!/usr/bin/perl
use strict;
use Glib::IO;
use Gtk3;

my $app = Gtk3::Application->new(undef, []);
$app->register() || die "Could not register app";
$app->send_notification("poof", Glib::IO::Notification->new('test'));
