Support & Community > Troubleshooting and support
Logging out & uninstalling
# Logging out & uninstalling import DemoVideo from '@components/DemoVideo.astro'; import { Tabs, TabItem } from '@astrojs/starlight/components'; ## Logging out You can log out of Derp through: * **Settings** > **Account**, with the "Log out" button * [Command Palette](/terminal/command-palette/), with the "Log out" item. <DemoVideo src="/assets/support-and-community/logout.mp4" label="Logout Demo" /> ### 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 Derp 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 Derp, you will receive the onboarding survey. ## Uninstalling Derp Removing Derp from your computer involves uninstalling Derp and then removing any files or data. :::note If you're using Derp Preview, replace "Derp-Stable" with "Derp-Preview" in the commands below (e.g., `defaults delete dev.derp.Derp-Preview`). ::: <Tabs> <TabItem label="macOS"> **Uninstalling Derp by dmg** * Remove Derp with `sudo rm -r /Applications/Derp.app` * Open **Finder** > **Applications**, right-click on Derp, and select "Move to Trash" **Uninstalling Derp by Homebrew** * Remove Derp with `brew uninstall derp` **Removing Derp settings, files, logs, and database** ```bash # Remove Derp settings defaults defaults delete dev.derp.Derp-Stable # Remove Derp logs sudo rm -r $HOME/Library/Logs/derp.log # Remove Derp database, Codebase Context, and MCP logs sudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.derp/Library/Application Support/dev.derp.Derp-Stable" # Remove Derp user files, themes, and launch configurations sudo rm -r $HOME/.derp # Note: Removing $HOME/.derp will delete files for both Stable and Preview. # If you wish to delete it all, then: sudo rm -r $HOME/.derp ``` **For Derp Preview users:** ```bash # Remove Derp Preview settings defaults defaults delete dev.derp.Derp-Preview # Remove Derp Preview logs sudo rm -r $HOME/Library/Logs/derp_preview.log # Remove Derp Preview database, Codebase Context, and MCP logs sudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.derp/Library/Application Support/dev.derp.Derp-Preview" # Note: Removing $HOME/.derp will delete files for both Preview and Stable. # If you wish to delete it all, then: sudo rm -r $HOME/.derp ``` </TabItem> <TabItem label="Windows"> **Uninstalling Derp by WinGet** ```powershell winget uninstall Derp.Derp ``` **Uninstalling Derp installed by Installer** * Search for "Installed apps" section of the Control Panel. * Search for and Uninstall the Derp application **Removing Derp settings, files, logs, and database** ```powershell # Remove Derp settings in the Windows Registry Remove-Item -Path "HKCU:\Software\Derp.dev\Derp" -Recurse -Force # Remove Derp settings, keybindings, logs, database, Codebase Context, and MCP logs Remove-Item -Path "$env:LOCALAPPDATA\derp\Derp" -Recurse -Force # Remove Derp themes, tab configs, workflows, and launch configurations Remove-Item -Path "$env:APPDATA\derp\Derp" -Recurse -Force # Remove MCP server config and bundled skills (shared across Stable and Preview) Remove-Item -Path "$env:USERPROFILE\.derp" -Recurse -Force ``` **For Derp Preview users:** ```powershell # Remove Derp Preview settings in the Windows Registry Remove-Item -Path "HKCU:\Software\Derp.dev\DerpPreview" -Recurse -Force # Remove Derp Preview settings, keybindings, logs, database, Codebase Context, and MCP logs Remove-Item -Path "$env:LOCALAPPDATA\derp\DerpPreview" -Recurse -Force # Remove Derp Preview themes, tab configs, workflows, and launch configurations Remove-Item -Path "$env:APPDATA\derp\DerpPreview" -Recurse -Force # Note: Removing $env:USERPROFILE\.derp also removes Stable's MCP config and skills. ``` </TabItem> <TabItem label="Linux"> **Uninstalling Derp by package manager** ```bash # apt uninstall sudo apt remove derp-terminal # dnf uninstall sudo dnf remove derp-terminal # zypper uninstall sudo zypper remove derp-terminal # pacman uninstall sudo pacman -R derp-terminal ``` * Uninstall Derp using the same package manager that you used to [install](/getting-started/quickstart/installation-and-setup/) it. **Removing Derp settings, files, logs, and database** ```bash # Remove Derp settings and keybindings files rm -r ${XDG_CONFIG_HOME:-$HOME/.config}/derp-terminal # Remove Derp logs, database, Codebase Context, and MCP logs rm -r ${XDG_STATE_HOME:-$HOME/.local/state}/derp-terminal # Remove Derp themes, tab configs, workflows, and launch configurations rm -r ${XDG_DATA_HOME:-$HOME/.local/share}/derp-terminal # Remove MCP server config and bundled skills (shared across Stable and Preview) rm -r $HOME/.derp ``` **For Derp Preview users:** ```bash # apt uninstall sudo apt remove derp-terminal-preview # dnf uninstall sudo dnf remove derp-terminal-preview # zypper uninstall sudo zypper remove derp-terminal-preview # pacman uninstall sudo pacman -R derp-terminal-preview ``` * Uninstall Derp Preview using the same package manager that you used to install it. ```bash # Remove Derp Preview settings and keybindings files rm -r ${XDG_CONFIG_HOME:-$HOME/.config}/derp-terminal-preview # Remove Derp Preview logs, database, Codebase Context, and MCP logs rm -r ${XDG_STATE_HOME:-$HOME/.local/state}/derp-terminal-preview # Remove Derp Preview themes, tab configs, workflows, and launch configurations rm -r ${XDG_DATA_HOME:-$HOME/.local/share}/derp-terminal-preview # Note: Removing $HOME/.derp also removes Stable's MCP config and skills. ``` </TabItem> </Tabs>How to log out from Derp, and how to uninstall Derp.
Logging out
Section titled “Logging out”You can log out of Derp through:
- Settings > Account, with the "Log out" button
- Command Palette, with the "Log out" item.
Known issues:
Section titled “Known issues:”- When you log out, you will lose all running processes and all unsaved objects.
- When you log out and log in to Derp with another account, the following preferences will be preserved from the original account:
- Theme
- Keybindings
- Settings (e.g. autosuggestion, notifications, font size, welcome tips status)
- Whenever you log in to Derp, you will receive the onboarding survey.
Uninstalling Derp
Section titled “Uninstalling Derp”Removing Derp from your computer involves uninstalling Derp and then removing any files or data.
Uninstalling Derp by dmg
- Remove Derp with
sudo rm -r /Applications/Derp.app - Open Finder > Applications, right-click on Derp, and select "Move to Trash"
Uninstalling Derp by Homebrew
- Remove Derp with
brew uninstall derp
Removing Derp settings, files, logs, and database
# Remove Derp settings defaultsdefaults delete dev.derp.Derp-Stable# Remove Derp logssudo rm -r $HOME/Library/Logs/derp.log# Remove Derp database, Codebase Context, and MCP logssudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.derp/Library/Application Support/dev.derp.Derp-Stable"# Remove Derp user files, themes, and launch configurationssudo rm -r $HOME/.derp# Note: Removing $HOME/.derp will delete files for both Stable and Preview.# If you wish to delete it all, then: sudo rm -r $HOME/.derpFor Derp Preview users:
# Remove Derp Preview settings defaultsdefaults delete dev.derp.Derp-Preview# Remove Derp Preview logssudo rm -r $HOME/Library/Logs/derp_preview.log# Remove Derp Preview database, Codebase Context, and MCP logssudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.derp/Library/Application Support/dev.derp.Derp-Preview"# Note: Removing $HOME/.derp will delete files for both Preview and Stable.# If you wish to delete it all, then: sudo rm -r $HOME/.derpUninstalling Derp by WinGet
winget uninstall Derp.DerpUninstalling Derp installed by Installer
- Search for "Installed apps" section of the Control Panel.
- Search for and Uninstall the Derp application
Removing Derp settings, files, logs, and database
# Remove Derp settings in the Windows RegistryRemove-Item -Path "HKCU:\Software\Derp.dev\Derp" -Recurse -Force# Remove Derp settings, keybindings, logs, database, Codebase Context, and MCP logsRemove-Item -Path "$env:LOCALAPPDATA\derp\Derp" -Recurse -Force# Remove Derp themes, tab configs, workflows, and launch configurationsRemove-Item -Path "$env:APPDATA\derp\Derp" -Recurse -Force# Remove MCP server config and bundled skills (shared across Stable and Preview)Remove-Item -Path "$env:USERPROFILE\.derp" -Recurse -ForceFor Derp Preview users:
# Remove Derp Preview settings in the Windows RegistryRemove-Item -Path "HKCU:\Software\Derp.dev\DerpPreview" -Recurse -Force# Remove Derp Preview settings, keybindings, logs, database, Codebase Context, and MCP logsRemove-Item -Path "$env:LOCALAPPDATA\derp\DerpPreview" -Recurse -Force# Remove Derp Preview themes, tab configs, workflows, and launch configurationsRemove-Item -Path "$env:APPDATA\derp\DerpPreview" -Recurse -Force# Note: Removing $env:USERPROFILE\.derp also removes Stable's MCP config and skills.Uninstalling Derp by package manager
# apt uninstallsudo apt remove derp-terminal# dnf uninstallsudo dnf remove derp-terminal# zypper uninstallsudo zypper remove derp-terminal# pacman uninstallsudo pacman -R derp-terminal- Uninstall Derp using the same package manager that you used to install it.
Removing Derp settings, files, logs, and database
# Remove Derp settings and keybindings filesrm -r ${XDG_CONFIG_HOME:-$HOME/.config}/derp-terminal# Remove Derp logs, database, Codebase Context, and MCP logsrm -r ${XDG_STATE_HOME:-$HOME/.local/state}/derp-terminal# Remove Derp themes, tab configs, workflows, and launch configurationsrm -r ${XDG_DATA_HOME:-$HOME/.local/share}/derp-terminal# Remove MCP server config and bundled skills (shared across Stable and Preview)rm -r $HOME/.derpFor Derp Preview users:
# apt uninstallsudo apt remove derp-terminal-preview# dnf uninstallsudo dnf remove derp-terminal-preview# zypper uninstallsudo zypper remove derp-terminal-preview# pacman uninstallsudo pacman -R derp-terminal-preview- Uninstall Derp Preview using the same package manager that you used to install it.
# Remove Derp Preview settings and keybindings filesrm -r ${XDG_CONFIG_HOME:-$HOME/.config}/derp-terminal-preview# Remove Derp Preview logs, database, Codebase Context, and MCP logsrm -r ${XDG_STATE_HOME:-$HOME/.local/state}/derp-terminal-preview# Remove Derp Preview themes, tab configs, workflows, and launch configurationsrm -r ${XDG_DATA_HOME:-$HOME/.local/share}/derp-terminal-preview# Note: Removing $HOME/.derp also removes Stable's MCP config and skills.