Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.

Commit d9f9204

Browse files
feat(notifications): add MSN Messenger completion sound (#3605)
1 parent 46f300a commit d9f9204

4 files changed

Lines changed: 5 additions & 1 deletion

File tree

15.5 KB
Binary file not shown.

packages/ui/src/features/settings/sections/NotificationsSettings.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ export function NotificationsSettings() {
283283
<Select.Item value="switch">Switch</Select.Item>
284284
<Select.Item value="wilhelm">Wilhelm scream</Select.Item>
285285
<Select.Item value="icq">ICQ</Select.Item>
286+
<Select.Item value="msn">MSN Messenger</Select.Item>
286287
{customSounds.length > 0 && (
287288
<Select.Group>
288289
<Select.Label>Custom</Select.Label>

packages/ui/src/features/settings/settingsStore.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ export type BuiltInCompletionSound =
5151
| "slide"
5252
| "switch"
5353
| "wilhelm"
54-
| "icq";
54+
| "icq"
55+
| "msn";
5556

5657
// A user-installed sound is selected by referencing its id as `custom:<id>`.
5758
export type CompletionSound =

packages/ui/src/utils/sounds.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import icqUrl from "../assets/sounds/icq.mp3";
1111
import knockUrl from "../assets/sounds/knock.mp3";
1212
import meepUrl from "../assets/sounds/meep.mp3";
1313
import meepSmolUrl from "../assets/sounds/meep-smol.mp3";
14+
import msnUrl from "../assets/sounds/msn.mp3";
1415
import reviUrl from "../assets/sounds/revi.mp3";
1516
import ringUrl from "../assets/sounds/ring.mp3";
1617
import shootUrl from "../assets/sounds/shoot.mp3";
@@ -35,6 +36,7 @@ const SOUND_URLS: Record<Exclude<BuiltInCompletionSound, "none">, string> = {
3536
switch: switchUrl,
3637
wilhelm: wilhelmUrl,
3738
icq: icqUrl,
39+
msn: msnUrl,
3840
};
3941

4042
const MIN_RATE = 1 / 3;

0 commit comments

Comments
 (0)