5ce2c8a982
为 Claude Code 提供原生 Windows toast 通知:点击跳回原窗口、切回 Windows Terminal 标签、跨虚拟桌面、调用方图标、非阻塞投递;NativeAOT 单文件分发。
8 lines
206 B
C#
8 lines
206 B
C#
namespace Notify.Ipc;
|
|
|
|
internal static class IpcConstants
|
|
{
|
|
// 保证 Host 单例的互斥量名(Local 级,按用户会话隔离)
|
|
public const string HostMutexName = "ClaudeCodeNotifyHost";
|
|
}
|