If you run Ghidra on a high DPI screen, you will probably find the GUI to be scaled down so small to be almost of no use.
There is a setting that you can adjust to scale the Ghidra GUI:
in $GHIDRA_ROOT/support
is a file named launch.properties
. In this launch.properties
file is the following configuration key:
VMARGS_LINUX=-Dsun.java2d.uiScale=1
Change this line to:
VMARGS_LINUX=-Dsun.java2d.uiScale=2
Then launch ghidra and you should be good to go!
In wayland it is very blurry at 125%, using
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer', 'xwayland-native-scaling']"
seems to work in scaling the text properly at highdpi but all icons and UI is very small, is there any way to have fractional scaling and non blurryness for highDPI screens?did you manage to get this fractional scaling without it being blurry?