fix notifications

This commit is contained in:
2026-03-02 15:40:53 +00:00
parent fd20fa9f13
commit 7ff1e03b1a
2 changed files with 31 additions and 12 deletions
+27 -8
View File
@@ -9,13 +9,18 @@ import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
// ============ CONFIGURATION ============
const REMOTE_HOST = "linux-pc"; // SSH host for remote notifications
const REMOTE_COMMAND = "paplay /usr/share/sounds/freedesktop/stereo/window-attention.oga & notify-send -i ~/.pi/agent/extensions/assets/pi-logo.svg 'Pi' 'Done. Ready for input.'";
const REMOTE_COMMAND =
"paplay /usr/share/sounds/freedesktop/stereo/window-attention.oga & notify-send -i ~/.pi/agent/extensions/assets/pi-logo.svg 'Pi' 'Done. Ready for input.'";
const LOCAL_SOUND_MAC = "/System/Library/Sounds/Glass.aiff";
const LOCAL_SOUND_LINUX = "/usr/share/sounds/freedesktop/stereo/complete.oga";
// =======================================
function isSSH(): boolean {
if (process.env.SSH_CONNECTION || process.env.SSH_CLIENT || process.env.SSH_TTY) {
if (
process.env.SSH_CONNECTION ||
process.env.SSH_CLIENT ||
process.env.SSH_TTY
) {
return true;
}
// Check for sshd-session process (works in tmux/zellij)
@@ -33,7 +38,10 @@ function isSSH(): boolean {
function notifyRemote(): void {
const { exec } = require("child_process");
exec(`ssh -o ConnectTimeout=2 -o BatchMode=yes ${REMOTE_HOST} "${REMOTE_COMMAND}"`, { timeout: 5000 });
exec(
`ssh -o ConnectTimeout=2 -o BatchMode=yes ${REMOTE_HOST} "${REMOTE_COMMAND}"`,
{ timeout: 5000 },
);
}
function notifyLocal(): void {
@@ -41,18 +49,29 @@ function notifyLocal(): void {
if (process.platform === "darwin") {
execFile("afplay", [LOCAL_SOUND_MAC]);
} else if (process.platform === "linux") {
exec("paplay /usr/share/sounds/freedesktop/stereo/window-attention.oga & notify-send -i ~/.pi/agent/extensions/assets/pi-logo.svg 'Pi' 'Done. Ready for input.'");
execFile(
"paplay",
["/usr/share/sounds/freedesktop/stereo/window-attention.oga"],
(err: any) => {
if (err) console.error("paplay error:", err);
},
);
exec(
"notify-send -i ~/.pi/agent/extensions/assets/pi-logo.svg 'Pi' 'Done. Ready for input.'",
(err: any) => {
if (err) console.error("notify-send error:", err);
},
);
}
}
function sendNotification(): void {
// On Mac or SSH session: notify remote Linux
// On Linux locally: notify local
if (process.platform === "darwin" || isSSH()) {
notifyRemote();
} else {
notifyLocal();
}
// always notify locally too
notifyLocal();
}
export default function (pi: ExtensionAPI) {