fix(cli): add notifications toggle

This commit is contained in:
Alex Alecu
2026-03-18 15:12:18 +02:00
parent 1ddaae711a
commit 70d2906149
@@ -679,6 +679,15 @@ export function Session() {
dialog.clear()
},
},
{
title: bellEnabled() ? "Disable notifications" : "Enable notifications",
value: "session.toggle.bell",
category: "Session",
onSelect: (dialog) => {
setBellEnabled((prev) => !prev)
dialog.clear()
},
},
{
title: "Page up",
value: "session.page.up",