on ubuntu 20.04, this was working well to tweak my setting via cli:
dconf write /org/gnome/desktop/interface/text-scaling-factor 0.9
however on ubuntu 22.04, I can only read the value
$ dconf read /org/gnome/desktop/interface/text-scaling-factor
0.94999999999999996
$ dconf write /org/gnome/desktop/interface/text-scaling-factor 0.9
error: The given address is empty
Any idea how to solve ?
Gnome tweaks
can modify it, but I want to do it via cli
.bashrc
? – n0tis Jul 19 '23 at 10:1420.02
to22.04
– n0tis Jul 19 '23 at 10:33dbus
packages which should be installed, when I doapt list --installed |grep ^dbus
it showsdbus
,dbus-x11
anddbus-user-session
. So maybe check you have same packages installed? But I really don't know what all this stuff means/does, I only answered as I has a similar issue as you when writing a backup script which runs as cron - in that case the environment variable was not set and I had to do it in the script. – codlord Jul 19 '23 at 10:42