Skip to content

Instantly share code, notes, and snippets.

@darrenpmeyer
Created October 19, 2020 21:34
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save darrenpmeyer/be57c46dbda90499c419e5e1e27ca4c2 to your computer and use it in GitHub Desktop.
Save darrenpmeyer/be57c46dbda90499c419e5e1e27ca4c2 to your computer and use it in GitHub Desktop.
Pixel Doubling / HiDPI display support for BurpSuite

Running BurpSuite on a HiDPI display, and that makes the interface window tiny and unreadable?

Just set the _JAVA_OPTIONS environment variable so that it includes -Dsun.java2d.uiScale=2

On Linux, you can edit the BurpSuiteCommunity executable shell script wherever it's been installed, to include the following line near the top (below the #! line, though!):

export _JAVA_OPTIONS="-Dsun.java2d.uiScale=2"

You can change 2, which will give you double the UI size, to other values (e.g. 3 will get you triple the UI size).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment