Switch notification sound to hohoho.mp3 and add download script

Replaced all references to notification.mp3 with hohoho.mp3 in notification-related components and context. Added hohoho.mp3 to the public directory. Introduced a script (download-notification-sound.js) for downloading notification sounds from YouTube using @distube/ytdl-core, which was added as a devDependency. Also added yt-dlp.exe for alternative audio downloading.
This commit is contained in:
g
2025-12-08 18:42:11 +00:00
parent 996bce6b4b
commit 54cfc62e35
9 changed files with 227 additions and 6 deletions

View File

@@ -92,7 +92,7 @@ export function NotificationProvider({ children }: NotificationProviderProps) {
}
// Initialize audio
audioRef.current = new Audio('/notification.mp3');
audioRef.current = new Audio('/hohoho.mp3');
audioRef.current.addEventListener('error', () => {
audioRef.current = null;
});