如何在 javascript gnome-shell 扩展中导入种子模块

发布于 2024-11-30 09:47:58 字数 575 浏览 4 评论 0原文

这很简单:我的 js 是 gnome-shell 扩展的一部分,包含几个导入行:

[...]
const Gettext = imports.gettext;
const MessageTray = imports.ui.messageTray;
imports.searchPath.push("/opt/tempmon/lib"); // append custom search path
const Helper = imports.tempmon; // import helper module
[...implementation...]

我已经使用 seed-module.h 成功编译了我的共享库,并将其放在 /opt 下/tempmon/lib/libseed_tempmon.so

Looking Glass (lg) 显示:

gjs/seed(我很困惑)找不到“搜索路径中的 JS-Module tempmon”。

需要采取什么措施才能将我的模块包含在 JS 环境中?

It's quite simple: My js is part of a gnome-shell extension and contains several import lines:

[...]
const Gettext = imports.gettext;
const MessageTray = imports.ui.messageTray;
imports.searchPath.push("/opt/tempmon/lib"); // append custom search path
const Helper = imports.tempmon; // import helper module
[...implementation...]

I've compiled my shared lib with seed-module.h successfully and placed it under /opt/tempmon/lib/libseed_tempmon.so

Looking Glass (lg) displays:

gjs/seed (I'm confused) couldn't find the "JS-Module tempmon in search path".

What action is needed to get my module included in the JS environment?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文