about summary refs log tree commit diff
path: root/pkgs/desktops/gnome/extensions/extensionOverridesPatches/freon_at_UshakovVasilii_Github.yahoo.com.patch
blob: 98f58d0c458fe9f5407a8ca3c613b218186867f4 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
diff --git a/hddtempUtil.js b/hddtempUtil.js
index e52fbc2..f5138bb 100644
--- a/hddtempUtil.js
+++ b/hddtempUtil.js
@@ -10,7 +10,7 @@ export default class HddtempUtil extends CommandLineUtil {
 
     constructor() {
         super();
-        let hddtempArgv = GLib.find_program_in_path('hddtemp');
+        let hddtempArgv = '@hddtemp@/bin/hddtemp';
         if(hddtempArgv) {
             // check if this user can run hddtemp directly.
             if(!GLib.spawn_command_line_sync(hddtempArgv)[3]){
@@ -22,8 +22,8 @@ export default class HddtempUtil extends CommandLineUtil {
         // doesn't seem to be the case… is it running as a daemon?
         // Check first for systemd
         let systemctl = GLib.find_program_in_path('systemctl');
-        let pidof = GLib.find_program_in_path('pidof');
-        let nc = GLib.find_program_in_path('nc');
+        let pidof = '@procps@/bin/pidof';
+        let nc = '@netcat@/bin/nc';
         let pid = undefined;
 
         if(systemctl) {
@@ -38,7 +38,7 @@ export default class HddtempUtil extends CommandLineUtil {
 
         // systemd isn't used on this system, try sysvinit instead
         if(!pid && pidof) {
-            let output = run_command("pidof hddtemp");
+            let output = run_command("@procps@/bin/pidof hddtemp");
             if(output.length)
                 pid = Number(output.trim());
         }
diff --git a/liquidctlUtil.js b/liquidctlUtil.js
index a2f3015..215707a 100644
--- a/liquidctlUtil.js
+++ b/liquidctlUtil.js
@@ -7,7 +7,7 @@ export default class LiquidctlUtil extends CommandLineUtil {
 
     constructor() {
         super();
-        const path = GLib.find_program_in_path('liquidctl');
+        const path = '@liquidctl@/bin/liquidctl';
         this._argv = path ? [path, 'status', '--json'] : null;
     }
 
diff --git a/nvmecliUtil.js b/nvmecliUtil.js
index 2b12d2d..70609f7 100644
--- a/nvmecliUtil.js
+++ b/nvmecliUtil.js
@@ -1,7 +1,7 @@
 import GLib from 'gi://GLib';
 
 function getNvmeData (argv){
-    const nvme = GLib.find_program_in_path('nvme')
+    const nvme = '@nvmecli@/bin/nvme'
     return JSON.parse(new TextDecoder().decode(GLib.spawn_command_line_sync(`${nvme} ${argv} -o json`)[1]))
 }
 
diff --git a/sensorsUtil.js b/sensorsUtil.js
index 90c6ca9..5788635 100644
--- a/sensorsUtil.js
+++ b/sensorsUtil.js
@@ -6,7 +6,7 @@ export default class SensorsUtil extends CommandLineUtil {
 
     constructor() {
         super();
-        let path = GLib.find_program_in_path('sensors');
+        let path = '@lm_sensors@/bin/sensors';
         // -A: Do not show adapter -j: JSON output
         this._argv = path ? [path, '-A', '-j'] : null;
     }
diff --git a/smartctlUtil.js b/smartctlUtil.js
index f58d194..b9cb9ca 100644
--- a/smartctlUtil.js
+++ b/smartctlUtil.js
@@ -1,7 +1,7 @@
 import GLib from 'gi://GLib';
 
 function getSmartData (argv){
-    const smartctl = GLib.find_program_in_path('smartctl')
+    const smartctl = '@smartmontools@/bin/smartctl'
     return JSON.parse(new TextDecoder().decode( GLib.spawn_command_line_sync(`'${smartctl}' ${argv} -j`)[1] ))
 }