diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-22 13:22:45 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-22 13:22:45 +1000 |
| commit | 7f2b5b4b6f5ffde97948efc50eaa356944f112b1 (patch) | |
| tree | 3aef5012e5143b6f2dc514f4035793ec1f5f34d5 /services/Bluetooth.qml | |
| parent | network: fix for non english locales (diff) | |
| download | caelestia-shell-7f2b5b4b6f5ffde97948efc50eaa356944f112b1.tar.gz caelestia-shell-7f2b5b4b6f5ffde97948efc50eaa356944f112b1.tar.bz2 caelestia-shell-7f2b5b4b6f5ffde97948efc50eaa356944f112b1.zip | |
systemusage: use sensors for cpu temps
Also fix lang and lc_all for procs
Diffstat (limited to 'services/Bluetooth.qml')
| -rw-r--r-- | services/Bluetooth.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/services/Bluetooth.qml b/services/Bluetooth.qml index 224054d..0769095 100644 --- a/services/Bluetooth.qml +++ b/services/Bluetooth.qml @@ -28,8 +28,8 @@ Singleton { running: true command: ["bluetoothctl", "show"] environment: ({ - LANG: "C.UTF-8", - LC_ALL: "C.UTF-8" + LANG: "C", + LC_ALL: "C" }) stdout: StdioCollector { onStreamFinished: { @@ -51,8 +51,8 @@ Singleton { end end`] environment: ({ - LANG: "C.UTF-8", - LC_ALL: "C.UTF-8" + LANG: "C", + LC_ALL: "C" }) stdout: StdioCollector { onStreamFinished: { |