Failure: appimage-run with gsetting

I try to run a appimage program with appimage-run, but I get some error when running.

I have used override with extraPkgs to add some packages like glib, fuse and so on, but the failure also exists.

Log:

(pcloud:14425): GLib-GIO-ERROR **: 13:41:22.748: No GSettings schemas are installed on the system

Dose anyone have ideas to fix this.

1 Like

I have encountered the same issue and just went through the minetime package by dtzWill which uses

appimageTools.wrapAppImage rec {
# ...
  profile = ''
    export LC_ALL=C.UTF-8
    export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
  '';
# ...
};

that solves the problem.