2021-12-06 16:07:01 +00:00
|
|
|
diff --git a/src/extension.ts b/src/extension.ts
|
2022-10-21 18:38:19 +00:00
|
|
|
index c3833e9..611e84c 100644
|
2021-12-06 16:07:01 +00:00
|
|
|
--- a/src/extension.ts
|
|
|
|
+++ b/src/extension.ts
|
2022-10-21 18:38:19 +00:00
|
|
|
@@ -544,7 +544,7 @@ export class Ext extends Ecs.System<ExtEvent> {
|
2021-12-06 16:07:01 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
- const ipc = utils.async_process_ipc(["gjs", path])
|
|
|
|
+ const ipc = utils.async_process_ipc([path])
|
|
|
|
|
|
|
|
if (ipc) {
|
|
|
|
const generator = (stdout: any, res: any) => {
|
|
|
|
diff --git a/src/panel_settings.ts b/src/panel_settings.ts
|
2022-10-21 18:38:19 +00:00
|
|
|
index 5d02d33..1cd70d0 100644
|
2021-12-06 16:07:01 +00:00
|
|
|
--- a/src/panel_settings.ts
|
|
|
|
+++ b/src/panel_settings.ts
|
2022-10-21 18:38:19 +00:00
|
|
|
@@ -348,7 +348,7 @@ function color_selector(ext: Ext, menu: any) {
|
2021-12-06 16:07:01 +00:00
|
|
|
color_selector_item.add_child(color_button);
|
|
|
|
color_button.connect('button-press-event', () => {
|
|
|
|
let path = Me.dir.get_path() + "/color_dialog/main.js";
|
|
|
|
- let resp = GLib.spawn_command_line_async(`gjs ${path}`);
|
2022-10-21 18:38:19 +00:00
|
|
|
+ let resp = GLib.spawn_command_line_async(`${path}`);
|
2021-12-06 16:07:01 +00:00
|
|
|
if (!resp) {
|
|
|
|
|
|
|
|
return null;
|
2022-10-21 18:38:19 +00:00
|
|
|
--
|
|
|
|
2.37.3
|
|
|
|
|