Changing the decimal comma to a dot. I allready tried just in terminal, but not really suceed. Now back in Gnome:
I try to extract a change made in dconf database.
Starting gnome-tweaks -v
with verbose, I get following output after change
(Keyboard&Mouse > Additional Layout Options > Numeric keypad Delete behavior > Four-level key with dot :
gnome-tweaks -v
Change: org.gnome.desktop.input-sources xkb-options -> ['kpdl:dot']
Change: org.gnome.desktop.input-sources xkb-options -> ['kpdl:dot']
/usr/lib/python3.11/site-packages/gi/overrides/Gio.py:42: Warning: g_atomic_ref_count_dec: assertion 'old_value > 0' failed
return Gio.Application.run(self, *args, **kwargs)
Now I do have the key and try to replicate with dconf
dconf dump /org/gnome/desktop/input-sources/
[/]
current=uint32 0
sources=[('xkb', 'br')]
xkb-options=['kpdl:dotoss']
Now my queston: How can I manipulate xkb-options=['kpdl:dotoss']
to write/remove it again (testing).
I checked the the man page and do miss an example. As it is a database I guess I have to write
xkb-options=0
that I can rewrite the value afterwards with my script?
Instead of a useful error i just get mostly displayed the help of dconf. Very irritating
Would be grateful for any hints how to do this manipulations with dconf.