summaryrefslogtreecommitdiff
path: root/services/Network.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-22 12:46:03 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-22 12:46:03 +1000
commitb13b6de9d89c38d92e348f555cd240f8d1af30b9 (patch)
tree0f6e7d412f3c8e9089bdcce128f81b54603952df /services/Network.qml
parentpicker: fix multimonitor (#127) (diff)
downloadcaelestia-shell-b13b6de9d89c38d92e348f555cd240f8d1af30b9.tar.gz
caelestia-shell-b13b6de9d89c38d92e348f555cd240f8d1af30b9.tar.bz2
caelestia-shell-b13b6de9d89c38d92e348f555cd240f8d1af30b9.zip
network: fix for non english locales
Also fix bluetooth
Diffstat (limited to '')
-rw-r--r--services/Network.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/services/Network.qml b/services/Network.qml
index 6a7f50e..1106136 100644
--- a/services/Network.qml
+++ b/services/Network.qml
@@ -24,6 +24,10 @@ Singleton {
id: getNetworks
running: true
command: ["nmcli", "-g", "ACTIVE,SIGNAL,FREQ,SSID,BSSID", "d", "w"]
+ environment: ({
+ LANG: "C.UTF-8",
+ LC_ALL: "C.UTF-8"
+ })
stdout: StdioCollector {
onStreamFinished: {
const PLACEHOLDER = "STRINGWHICHHOPEFULLYWONTBEUSED";