Ask Your Question
3

What is the solution for adjusting the scaling of a Java-centered program in Linux for a high DPI screen?

asked 2023-04-30 03:46:55 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-04-30 04:03:01 +0000

devzero gravatar image

One solution for adjusting the scaling of a Java-centered program in Linux for a high DPI screen is to set the scaling factor for the Java runtime environment (JRE) using the JAVAOPTIONS environment variable.

To do this, you can add the following line to your shell startup file (e.g., ~/.bashrc or ~/.zshrc):

export JAVAOPTIONS='-Dsun.java2d.uiScale=2.0'

This will set the scaling factor to 2.0. You can adjust this value to suit your needs.

Once you've added this line to your shell startup file, restart your terminal or run source ~/.bashrc (or source ~/.zshrc) to apply the changes. Then, when you launch your Java-centered program, it should be scaled appropriately for your high DPI screen.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-04-30 03:46:55 +0000

Seen: 20 times

Last updated: Apr 30 '23