> For the complete documentation index, see [llms.txt](/llms.txt).
> Markdown versions of each page are available by appending .md to any URL.

# Session Restoration

Restore your windows, tabs, panes, and recent Blocks automatically when you relaunch Warp.

## What is it

Session restoration allows you to quickly pick up where you left off in your previous terminal session.

## How to access Session Restoration

-   Session Restoration comes enabled by default in Warp.

Note

On Linux, opening windows at a specific position is not supported in Wayland.

-   You can disable Session Restoration by going to **Settings** > **Features**, then toggling off **Restore windows, tabs, and panes on startup**.

Caution

Toggling off Session Restoration will not clear the [SQLite database](/terminal/sessions/session-restoration/#session-restoration-database); however, Warp will stop recording new output.

## How session restoration works

#### Session Restoration database

Warp saves the data from your previous session’s windows, tabs, and panes to a SQLite database on your computer, and every time you quit the app, this data is overwritten by your latest session. You can open the database directly and inspect its full contents like so:

-   [macOS](#tab-panel-812)
-   [Windows](#tab-panel-813)
-   [Linux](#tab-panel-814)

```
sqlite3 "$HOME/Library/Group Containers/2BBY89MBSN.dev.warp/Library/Application Support/dev.warp.Warp-Stable/warp.sqlite"
```

```
sqlite3 $env:LOCALAPPDATA\warp\Warp\data\warp.sqlite
```

```
sqlite3 "${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal/warp.sqlite"
```

**How to clear the Session Restoration database**

Sometimes, you may want to prevent a sensitive Block from being saved on your computer, or you may want to clear blocks from a machine entirely.

Note

This interferes with the running session’s ability to save content and may require you to close Warp before running the database removal commands.

Danger

The following guidance is destructive and will delete any sessions and block history.

There are two ways to do this:

-   [macOS](#tab-panel-815)
-   [Windows](#tab-panel-816)
-   [Linux](#tab-panel-817)

-   Clear the blocks from your running Warp session with `CMD-K`.
-   Delete the SQLite file entirely with the following command:

```
rm -f "$HOME/Library/Group Containers/2BBY89MBSN.dev.warp/Library/Application Support/dev.warp.Warp-Stable/warp.sqlite"
```

-   Clear the blocks from your running Warp session with `CTRL-SHIFT-K`.
-   Delete the SQLite file entirely with the following command:

```
Remove-Item -Force $env:LOCALAPPDATA\warp\Warp\data\warp.sqlite
```

-   Clear the blocks from your running Warp session with `CTRL-SHIFT-K`.
-   Delete the SQLite file entirely with the following command:

```
rm -f "${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal/warp.sqlite"
```
