We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib.bundle
I scaffolded up a new project using ags and then built it using the following:
ags
alxandr-bar = inputs.ags.lib.bundle { inherit pkgs; src = ./packages/bar/src; name = "alxandr-bar"; entry = "app.ts"; gtk4 = true; };
When I run it, I get the following error:
(gjs:1032121): GLib-GObject-CRITICAL **: 22:07:15.880: cannot register existing type 'GtkIMContext' (gjs:1032121): GLib-GObject-CRITICAL **: 22:07:15.880: cannot add private field to invalid (non-instantiatable) type '<invalid>' (gjs:1032121): GLib-CRITICAL **: 22:07:15.880: g_once_init_leave_pointer: assertion 'result != 0' failed (gjs:1032121): GLib-GObject-CRITICAL **: 22:07:15.880: g_type_register_dynamic: assertion 'parent_type > 0' failed
Turning gtk4 off makes bar start (though causes other issues, cause gtk4 is not loaded). Running the bar using ags run --gtk4 app.ts works.
ags run --gtk4 app.ts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I scaffolded up a new project using
ags
and then built it using the following:When I run it, I get the following error:
Turning gtk4 off makes bar start (though causes other issues, cause gtk4 is not loaded). Running the bar using
ags run --gtk4 app.ts
works.The text was updated successfully, but these errors were encountered: