2

I understand 19.04 enables experimental fractional scaling from a couple of resources

And others for older Ubuntu versions:

However, when I enable the feature as presented, I get an error that the setting isn't saved:

~$ gsettings set org.gnome.mutter experimental-features "['x11-randr-fractional-scaling']"
GLib-GIO-Message: 12:22:36.852: Using the 'memory' GSettings backend.  Your settings will not be saved or shared with other applications.

Part of the instructions require rebooting to even get the menu to come up in display. How can I enable the ability to enable this setting successfully?

Mittenchops
  • 1,620
  • It happened to me that the gsettings called is not the one provided by system, but the one provided by conda/anaconda. This could be checked by which gsettings. If true, then perhaps you could try directly calling /usr/bin/gsettings instead? – taper Apr 29 '19 at 19:53
  • Thanks, @taper. That did it for me. If you make that an answer, I'll accept. – Mittenchops May 21 '19 at 19:27

1 Answers1

2

It might be that the gsettings you called is not the one provided by the system, but the one provided by, in my case, the conda/anaconda python distribution, which is causing the error message. Then, you can try directly calling the system's /usr/bin/gsettings instead.

Note, to check the full path to the gsettings you called, try which gsettings.

taper
  • 218