about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnome/extensions/pop-shell/fix-gjs.patch
blob: 83b4cea8b9200f4fa9e8a75d1e3847a0b072297f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
diff --git a/src/extension.ts b/src/extension.ts
index c3833e9..611e84c 100644
--- a/src/extension.ts
+++ b/src/extension.ts
@@ -544,7 +544,7 @@ export class Ext extends Ecs.System<ExtEvent> {
             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
index 5d02d33..1cd70d0 100644
--- a/src/panel_settings.ts
+++ b/src/panel_settings.ts
@@ -348,7 +348,7 @@ function color_selector(ext: Ext, menu: any) {
     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}`);
+        let resp = GLib.spawn_command_line_async(`${path}`);
         if (!resp) {
 
             return null;
-- 
2.37.3