Skip to content

Disable telemetry

CallBro release builds may include PostHog analytics to help improve the product. Telemetry is on by default when a PostHog key is present in the build.

There is no in-app settings toggle today. You disable telemetry at runtime by setting an environment variable when launching the app.

Set CALLBRO_DISABLE_TELEMETRY to a truthy value:

  • 1
  • true
  • yes
  • on

Matching is case-insensitive. If the variable is unset (or set to something else), telemetry stays on when a key is present.

Terminal window
CALLBRO_DISABLE_TELEMETRY=1 ./CallBro

For a .desktop launcher, prefix Exec= with env:

Exec=env CALLBRO_DISABLE_TELEMETRY=1 /opt/CallBro/CallBro %U
Terminal window
set CALLBRO_DISABLE_TELEMETRY=1 && CallBro.exe
Terminal window
$env:CALLBRO_DISABLE_TELEMETRY = "1"; .\CallBro.exe

Environment variables are not passed when you open the app from Finder or use open -a CallBro. Launch the binary directly:

Terminal window
CALLBRO_DISABLE_TELEMETRY=1 /Applications/CallBro.app/Contents/MacOS/CallBro