You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Glib/gsettings schemas is actually installed twice:
once in /usr/share/glib-2.0/schemas to dconf-editor is happy
once in /usr/local/lib/python3.5/dist-packages/guake/data/ and used by guake
need to change so only one is used. Need to support development mode where is is not yet installed.
My guess is that:
development, manual install through sudo make install and pypi install would use the Guake's data directory, so there is no modification of the system. dconf-editor might not see this schema.
package installation (apt install guake) would use glib-2.0 schemas directory, allowing using to use dconf-editor.
The text was updated successfully, but these errors were encountered:
Glib/gsettings schemas is actually installed twice:
/usr/share/glib-2.0/schemas
to dconf-editor is happy/usr/local/lib/python3.5/dist-packages/guake/data/
and used by guakeneed to change so only one is used. Need to support development mode where is is not yet installed.
My guess is that:
sudo make install
and pypi install would use the Guake'sdata
directory, so there is no modification of the system.dconf-editor
might not see this schema.apt install guake
) would useglib-2.0
schemas directory, allowing using to usedconf-editor
.The text was updated successfully, but these errors were encountered: