How do I enable more than one experimental feature?

Hi all,

In order to enable variable refresh rate for my display, I ran the following command:

gsettings set org.gnome.mutter experimental-features "['variable-refresh-rate']"

This seemed to work well! I would like to also enable fractional scaling. The command that I’ve seen copied on several websites is:

gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"

Wouldn’t this replace the existing valule for experimental-features, thus disabling the experimental variable refresh rate options? If so, is there a way for me to append 'scale-monitor-framebuffer' to the existing value in order to use both features at the same time?

Thanks!

The value is a string array, so just specify both values:

gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer', 'variable-refresh-rate']"
2 Likes

This topic was automatically closed 45 days after the last reply. New replies are no longer allowed.