Consider to use gsettings
instead of dconf
.
Simple hacky way:
gsettings set org.mate.panel object-id-list \
"$(gsettings get org.mate.panel object-id-list | sed "s/'window-list', //")"
Explanation. On my clean installation of Ubuntu MATE 18.04 LTS the output of
gsettings get org.mate.panel object-id-list
is
['briskmenu', 'firefox', 'notification-area', 'indicatorappletcomplete', 'clock', 'show-desktop', 'window-list', 'workspace-switcher', 'trashapplet']
With | sed "s/'window-list', //"
piping we can remove 'window-list',
from parameter value and change it to the following:
['briskmenu', 'firefox', 'notification-area', 'indicatorappletcomplete', 'clock', 'show-desktop', 'workspace-switcher', 'trashapplet']
then we pass this value to gsettings set org.mate.panel object-id-list
.
Note: this method is also suitable for Ubuntu MATE 16.04 LTS.