You can import a ready-made example from here: https://eu.eyeauras.net/share/S20250206100355L0RMN0j2bzvb
For displaying notifications, you can use a C# script with just a few lines of code — there are many libraries available that can show such messages. For example, I will use Notification.Wpf by Alexander Platonenkov.
HotkeyIsActive and bind it to a convenient key (e.g., F3) — this will be our toggle on/off. Change the activation type to Click/Hold.C# Script action in On Enter.F3 is pressed, a notification will appear in the bottom-right corner of the screen.#r "nuget: Notification.Wpf, 7.0.0"
using Notification.Wpf.Controls;
using Notification.Wpf;
var notificationManager = new NotificationManager();
notificationManager.Show("test");


