I have a 4K monitor and some icons are blurry, and/or some parts of the UI are out of screen (Genymotion Desktop)

Since Genymotion Desktop 3.8.0, Genymotion support auto-scaling which makes it possible to use it on 4k monitors without further tweaking. However, the icons may appear blurry and some parts of the interface may be out of screen on some 4k monitor resolutions.

To fix this, auto-scaling can be disabled and customized. You can set the following variables:

Windows

1. Press Windows + R to open the Windows Run prompt.

2. Type in sysdm.cpl and click OK.

3. Click the “ Environment variables ” button under the “ Advanced ” tab:

4. You can either create a User Variable or a System Variable.

5. To create a user variable, click “ New ” under the “ User Variables ” section.

6. To create a system variable, click “ New ” under the “ System Variables ” section.

7. Type "QT_AUTO_SCREEN_SCALE_FACTOR" in "Variable Name" field.

8. In the "Variable value" field, type "0" to disable auto-scaling. Click "OK" to confirm.

9. Create another new variable.

10. Now, type "QT_SCALE_FACTOR" in "Variable Name" field.

11. Next, in the "Variable Value" field, insert a number to increase (>1) or decrease (<1) the scaling factor.

For exemple "0.75" will decrease scaling of text and icons by 0.75.

12. In the main window, click “ Apply ” and “ Ok ” buttons.

13. Restart Windows to apply the new environment variable.

Linux/macOS

You can either start Genymotion from a terminal with the variables:

$
QT_AUTO_SCREEN_SCALE_FACTOR=0 QT_SCALE_FACTOR=0.75 ./genymotion

Or export the variable temporarily and start Genymotion from a terminal

Or add the variables to your .bashrc (Linux) or ~/.bash-profile (macOS) file, to set it permanently.

In this example, the value "0.75" decreases scaling of text and icons by 0.75, but any other value can be used to change scaling to your liking (>1 to increase scaling, <1 to decrease it).