Warp documentation
  • 🚀Getting Started
    • Quickstart Guide
    • What is Warp?
    • Migrate to Warp
    • Using Warp with [zsh|bash|fish|pwsh]
    • Privacy
    • Refer a Friend & Earn Rewards
    • Warp Preview & Alpha Program
    • Changelog
  • 🎨Appearance
    • Themes
    • Custom Themes
    • Prompt
    • Input Position
    • Text, Fonts, & Cursor
    • Size, Opacity, & Blurring
    • Pane Dimming & Focus
    • Blocks Behavior
    • Tabs Behavior
    • App Icons
  • 📕Features
    • Warp AI
      • Active AI
      • Agent Mode
      • Generate
      • Model Context Protocol
      • Voice
      • Rules
    • Command Palette
    • Warp Drive
      • Notebooks
      • Workflows
      • Prompts
      • Environment Variables
      • Warp Drive on the Web
    • Teams
    • Session Sharing
    • Blocks
      • Block Basics
      • Block Actions
      • Block Sharing
      • Block Filtering
      • Background Blocks
      • Sticky Command Header
    • Modern Text Editing
      • Alias Expansion
      • Command Inspector
      • Syntax & Error Highlighting
      • Vim Keybindings
    • Command Entry
      • Command Corrections
      • Command Search
      • Command History
      • Synchronized Inputs
      • YAML Workflows
    • Command Completions
      • Completions
      • Autosuggestions
    • Session Management
      • Launch Configurations
      • Session Navigation
      • Session Restoration
    • Window Management
      • Global Hotkey
      • Tabs
      • Split Panes
    • Warpify
      • Subshells
      • SSH
    • Accessibility
    • Find
    • Files, Links, & Scripts
    • Markdown Viewer
    • Working Directory
    • Smart-Select
    • Full-screen Apps
    • Keyboard Shortcuts
    • Notifications & Audible Bell
    • Settings Sync (Beta)
    • Quit Warning
    • Integrations
    • URI Scheme
    • Network Log
    • Secret Redaction
    • Linux
  • 📊How Does Warp Compare?
    • Performance
    • Terminal features
  • ❓Help
    • Sending Feedback & Logs
    • Plans, Subscriptions & Pricing
    • Updating Warp
    • Using Warp Offline
    • Logging out & Uninstalling
    • Known Issues
    • Troubleshooting Login Issues
    • Open Source Licenses
Powered by GitBook
On this page
  • Logging out
  • Known issues:
  • Uninstalling Warp

Was this helpful?

  1. Help

Logging out & Uninstalling

How to log out from Warp, and how to uninstall Warp.

PreviousUsing Warp OfflineNextKnown Issues

Last updated 1 month ago

Was this helpful?

Logging out

You can log out of Warp through:

  • Settings > Account, with the "Log out" button

  • , with the "Log Out" item.

Known issues:

  1. When you log out, you will lose all running processes and all unsaved objects.

  2. When you log out and log in to Warp with another account, the following preferences will be preserved from the original account:

    1. Theme

    2. Keybindings

    3. Settings (e.g. autosuggestion, notifications, font size, welcome tips status)

  3. Whenever you log in to Warp, you will receive the onboarding survey.

Uninstalling Warp

Removing Warp from your computer involves uninstalling Warp and then removing any files or data.

If you're using Warp Preview, replace "Warp-Stable" with "Warp-Preview" in the commands below (e.g., defaults delete dev.warp.Warp-Preview).

Uninstalling Warp by dmg

  • Remove Warp with sudo rm -r /Applications/Warp.app

  • Go to Mac Finder > Applications and right-click on Warp, and "Move to Trash"

Uninstalling Warp by Homebrew

  • Remove Warp with brew uninstall warp

Removing Warp settings, files, logs, and database

# Remove Warp settings defaults
defaults delete dev.warp.Warp-Stable
# Remove Warp logs
sudo rm -r $HOME/Library/Logs/warp.log
# Remove Warp database
sudo rm -r "$HOME/Library/Application Support/dev.warp.Warp-Stable"
# Remove Warp user files, themes, and launch configurations
sudo rm -r $HOME/.warp

For Warp Preview users:

# Remove Warp Preview settings defaults
defaults delete dev.warp.Warp-Preview
# Remove Warp Preview logs
sudo rm -r $HOME/Library/Logs/warp_preview.log
# Remove Warp Preview database
sudo rm -r "$HOME/Library/Application Support/dev.warp.Warp-Preview"
# Note: Removing $HOME/.warp will delete files for both Preview and Stable versions. If you wish to delete it all, then: sudo rm -r $HOME/.warp

Uninstalling Warp installed by Installer

  • Search for "Installed apps" section of the Control Panel.

  • Search for and Uninstall the Warp application

Removing Warp settings, files, logs, and database

# Remove Warp settings in the Windows Registry
Remove-Item -Path "HKCU:\Software\Warp.dev\Warp" -Recurse -Force
# Remove Warp user files, logs, cache, and database from LOCALAPPDATA
Remove-Item -Path "$env:LOCALAPPDATA\warp\Warp" -Recurse -Force
# Remove themes and launch configurations
Remove-Item -Path "$env:APPDATA\warp\Warp" -Recurse -Force

For Warp Preview users:

# Remove Warp Preview settings in the Windows Registry
Remove-Item -Path "HKCU:\Software\Warp.dev\Warp-Preview" -Recurse -Force
# Remove Warp Preview user files, logs, cache, and database from LOCALAPPDATA
Remove-Item -Path "$env:LOCALAPPDATA\warp\Warp-Preview" -Recurse -Force
# Remove Warp Preview themes and launch configurations
Remove-Item -Path "$env:APPDATA\warp\Warp-Preview" -Recurse -Force

Uninstalling Warp by package manager

# apt uninstall
sudo apt remove warp-terminal
# dnf uninstall
sudo dnf remove warp-terminal
# zypper uninstall
sudo zypper remove warp-terminal
# pacman uninstall
sudo pacman -R warp-terminal

Removing Warp settings, files, logs, and database

# Remove Warp settings files
rm -r ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal
# Remove Warp user files, logs, and database
rm -r ${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal
# Remove Warp themes and launch configurations
rm -r ${XDG_STATE_HOME:-$HOME/.local/share}/warp-terminal

For Warp Preview users:

# apt uninstall
sudo apt remove warp-terminal-preview
# dnf uninstall
sudo dnf remove warp-terminal-preview
# zypper uninstall
sudo zypper remove warp-terminal-preview
# pacman uninstall
sudo pacman -R warp-terminal-preview
  • Uninstall Warp Preview using the same package manager that you used to install it.

# Remove Warp Preview settings files
rm -r ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal-preview
# Remove Warp Preview user files, logs, and database
rm -r ${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal-preview
# Remove Warp Preview themes and launch configurations
rm -r ${XDG_STATE_HOME:-$HOME/.local/share}/warp-terminal-preview

Uninstall Warp using the same package manager that you used to it.

❓
install
Command Palette
Logout Demo