본문으로 바로가기

claude code window 알림 설정 방법

사용자 폴더에 .claude 내에 settings.json 을 만든다.

그리고 다음과 같이 hook 을 입력.

{
  "hooks": {
    "Stop": [
      {
        "matcher": "",
        "hooks": [
          {
            "type": "command",
            "command": "powershell.exe -c "[System.Media.SystemSounds]::Beep.Play()""
          }
        ]
      }
    ],
    "Notification": [
      {
        "matcher": "",
        "hooks": [
          {
            "type": "command",
            "command": "powershell.exe -c "[System.Media.SystemSounds]::Beep.Play()""
          }
        ]
      }
    ]
  }
}

이렇게 하면 클로드가 중단됐을 때나 알림이 필요할 때 기본 소리로 알림을 받을 수 있습니다.