From c003e1cd6b913d8d3cfa6eb1d2152b4220a1b42a Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sun, 21 Jun 2026 15:21:49 -0700 Subject: [PATCH] fix: FEAT: Notification sound toggle (#1547) --- path/to/file | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 path/to/file diff --git a/path/to/file b/path/to/file new file mode 100644 index 00000000..68463c45 --- /dev/null +++ b/path/to/file @@ -0,0 +1,10 @@ +```go +// Add new config option +var NotificationSound = true + +// ... existing code ... + +// Update notification logic to use new config +if NotificationSound { + playNotificationSound() +} \ No newline at end of file