Skip to content

Desktop Notifications

Open in ChatGPT ↗
Ask ChatGPT about this page
Open in Claude ↗
Ask Claude about this page
Copied!

Receive desktop notifications when long-running commands complete or need your input.

Notifications can be sent when a command completes after a configurable number of seconds or when a running command needs you to enter a password to proceed. For either of these triggers, Warp will only send you a desktop notification if you are using a different app at the time the trigger is fired.

Custom notification hooks (OSC 9 / OSC 777)

Section titled “Custom notification hooks (OSC 9 / OSC 777)”

Warp supports pluggable notifications triggered by terminal escape sequences, so scripts and tools can raise desktop notifications without additional dependencies.

  • OSC 9 (body only): sends a notification with just a body.
    • Format: ESC ] 9 ; <body> BEL
    • Example (bash/zsh): printf '\033]9;Build complete\007'
  • OSC 777 (title + body): sends a notification with a title and body.
    • Format: ESC ] 777 ; notify ; <title> ; <body> BEL
    • Example (bash/zsh): printf '\033]777;notify;Deploy;Success on prod\007'

Notes:

  • Works on macOS, Windows, and Linux where Warp is allowed to show notifications.
  • Newlines and semicolons should be avoided or escaped in payloads.
  • This feature is enabled by default in current releases of Warp.
  • Notifications are enabled by default and require system permissions to appear.
  • If you’ve turned Notifications off before, toggle it back on by going to Settings > Features > Session, or quickly toggle Notifications with the Command Palette.
  • Customize Notification triggers for long-running commands or password prompts by going to Settings > Features > Notifications.

Warp requires two distinct notification settings to work. macOS system settings found in > System Settings > Notifications & Focus and Warp app settings found in Settings > Features > Session must both be enabled for Notifications to show.

If you have Notifications enabled in the system and Warp, but you still aren’t receiving desktop notifications, try the following:

  • Make sure that you are navigated away from Warp when you expect to receive the notification.
  • Make sure the Do Not Disturb mode is turned off in > System Settings > Notifications > Notifications & Focus > Focus.
  • Go to > System Settings > Notifications & Focus > Notifications and select Warp in the list. Make sure either banner style or alert style notifications are selected, then quit and restart Warp.
  • To get the macOS notification prompt to show again for Warp, run defaults delete dev.warp.Warp-Stable Notifications, then restart Warp and toggle on the Settings > Features > Receive desktop notifications from Warp.
  • Once all of the above is done, please restart macOS to apply the changes and that should help with restoring notifications in Warp.

Please reach out to us if you have any other issues.