HiDPI on Wayfire

The Enable HiDPI toggle in Garuda Welcome is not fully functional in Wayfire edition.

I had to add the following to ~/.config/wayfire.ini to get things readable on my 4K laptop display:

[eDP-1]
mode = [email protected]
layout = 0,0
transform = normal
scale = 2.000000

3 Likes

Fine tuning this great distro (!) and because of GTK/Qt applications not playing well with the wayfire.ini [eDP-1] settings as stated above, I came to the following adjustments:

  • in ~/.config/wayfire.ini:
    [eDP-1]
    layout = 0,0
    mode = [email protected]
    scale = 1.900000
    transform = normal

  • in ~/.profile:
    export QT_AUTO_SCREEN_SCALE_FACTOR=1
    export GDK_SCALE=1
    export GDK_DPI_SCALE=1.5

1 Like