Skip to content

Commit

Permalink
Sensors@claudiux v4.2.1: Fixes #6868 (#6872)
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiux authored Feb 15, 2025
1 parent d33218e commit d92acb2
Show file tree
Hide file tree
Showing 5 changed files with 1,811 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Sensors@claudiux/files/Sensors@claudiux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v4.2.1~20250215
* Fixes #6868.

### v4.2.0~20250205
* Fixes several issues.
* Fixes #6845.
Expand Down
2 changes: 1 addition & 1 deletion Sensors@claudiux/files/Sensors@claudiux/applet.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class SensorsApplet extends Applet.TextApplet {
this.setAllowedLayout(Applet.AllowedLayout.BOTH);

// To be sure that the scripts will be executable:
spawnCommandLineAsync("/bin/bash -c 'cd %s && chmod 755 *.py *.sh'".format(SCRIPTS_DIR), null, null);
spawnCommandLineAsync(`/bin/bash -c 'cd ${SCRIPTS_DIR} && chmod 755 *.py *.sh'`, null, null);

this.sudo_or_wheel = "none";
let subProcess = spawnCommandLineAsyncIO("/bin/bash -c 'groups'", (out, err, exitCode) => {
Expand Down
Loading

0 comments on commit d92acb2

Please sign in to comment.