You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'll be great if I could actually know which module is being played (I normally call xmp on a non-discriminatory find in my modules library). Given you already have the necessary information store in mi->mod->name and such, adding this shouldn't be that hard right?
Example code for libnotify in C:
#include <libnotify/notify.h>
void main () {
notify_init ("Hello world!");
NotifyNotification * Hello = notify_notification_new ("Hello world", "This is an example notification.", "dialog-information");
notify_notification_show (Hello, NULL);
g_object_unref(G_OBJECT(Hello));
notify_uninit();
}
The text was updated successfully, but these errors were encountered:
Would this be a possible addition?
It'll be great if I could actually know which module is being played (I normally call
xmp
on a non-discriminatoryfind
in my modules library). Given you already have the necessary information store inmi->mod->name
and such, adding this shouldn't be that hard right?Example code for libnotify in C:
The text was updated successfully, but these errors were encountered: