# NotificationSettingsScreen

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/widgets/notification_settings/NotificationSettingsScreen)

Modal dialog for managing startup warning preferences.

Each checkbox maps to a key in `[warnings].suppress` in
`~/.deepagents/config.toml`. Toggling a checkbox immediately
persists the change.

## Signature

```python
NotificationSettingsScreen(
    self,
    suppressed: set[str],
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `suppressed` | `set[str]` | Yes | Set of currently suppressed warning keys. |

## Extends

- `ModalScreen[None]`

## Constructors

```python
__init__(
    self,
    suppressed: set[str],
) -> None
```

| Name | Type |
|------|------|
| `suppressed` | `set[str]` |


## Properties

- `BINDINGS`
- `CSS`

## Methods

- [`compose()`](https://reference.langchain.com/python/deepagents-cli/widgets/notification_settings/NotificationSettingsScreen/compose)
- [`on_mount()`](https://reference.langchain.com/python/deepagents-cli/widgets/notification_settings/NotificationSettingsScreen/on_mount)
- [`on_checkbox_changed()`](https://reference.langchain.com/python/deepagents-cli/widgets/notification_settings/NotificationSettingsScreen/on_checkbox_changed)
- [`action_cancel()`](https://reference.langchain.com/python/deepagents-cli/widgets/notification_settings/NotificationSettingsScreen/action_cancel)

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/829909166606f8a9d9571b00da725845bad08da7/libs/cli/deepagents_cli/widgets/notification_settings.py#L30)