Skip to content

Notification

Castor uses the JoliNotif library to display notifications.

The notify() function

You can use the notify() function to display a desktop notification:

use Castor\Attribute\AsTask;

use function Castor\notify;

#[AsTask()]
function notify()
{
    notify('Hello world!');
}

Notify with run()

You can use the notify argument of the run() function to display a notification when a command has been executed:

use Castor\Attribute\AsTask;

use function Castor\run;

#[AsTask()]
function notify()
{
    run(['echo', 'notify'], notify: true); // will display a success notification
    run('command_that_does_not_exist', notify: true); // will display a failure notification
}

Choose when to display a notification

You can set the notify property in the context to false to disable notifications globally:

use Castor\Attribute\AsTask;

use Castor\Context;
use function Castor\notify;
use function Castor\run;
use function Castor\with;

#[AsTask()]
function notify()
{
    with(
        callback: function () {
            notify('Hello world!'); // will not display a notification
            run('ls'); // will not display a notification

            run('ls', notify: true); // will display a notification (you override the context value on the fly)
        },
        context: new Context(notify: false),
    );
}

You can also set the notify property in the context to null that mean all user declared notifications will be displayed, but not the ones generated by Castor:

null is the default value of the notify property.

use Castor\Attribute\AsTask;

use Castor\Context;
use function Castor\notify;

#[AsTask()]
function notify()
{
    with(
        callback: function () {
            run('ls'); // will not display a notification
            run('ls', notify: true); // will display a notification
            notify('Hello world!'); // will display a notification
        },
        context: new Context(notify: null),
    );
}

Finally, you can set the notify property in the context to true to enable notifications globally:

In that case, any call to the notify() function will display a notification. (user or Castor generated notifications)

use Castor\Attribute\AsTask;

use Castor\Context;
use function Castor\notify;

#[AsTask()]
function notify()
{
    with(
        callback: function () {
            run('ls'); // will display a notification
            notify('Hello world!'); // will display a notification
        },
        context: new Context(notify: true),
    );
}

Customizing the notification title

You can set a custom title for notifications by setting the notificationTitle property in the context or by passing a second argument to the notify() function:

Note

By default the title is "Castor". The second argument of the notify() function will override the title set in the context.

use Castor\Attribute\AsTask;

use function Castor\notify;
use Castor\Context;

#[AsContext(default: true)]
function my_context(): Context
{
    return new Context(
        notificationTitle: 'My custom title'
    );
}

#[AsTask()]
function notify()
{
    notify('Hello world!'); // will display a notification with the title "My custom title"
    notify('Hello world!', 'Specific title'); // will display a notification with the title "Specific title"
}