From 818e66f335abe9ab74c5f1063bdafdfd9aaa9a80 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 20:25:13 +0000 Subject: [PATCH 1/2] Initial plan From 3f73336c2cda05ccbddc9114969bfd30da72eb2c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 20:27:39 +0000 Subject: [PATCH 2/2] Fix data connection in IDLE mode by using DATA_OFF_OUTSIDE instead of KEEP_DATA_IN_CAR Co-authored-by: Doezer <11655673+Doezer@users.noreply.github.com> --- service.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service.sh b/service.sh index f8cbd97..75d669d 100644 --- a/service.sh +++ b/service.sh @@ -444,12 +444,12 @@ apply_wireless_profile(){ apply_idle_profile(){ if [ "$KEEP_WIFI_IN_IDLE" = "1" ]; then wifi_on; else wifi_off; fi - if [ "$KEEP_DATA_IN_CAR" = "1" ]; then + if [ "$DATA_OFF_OUTSIDE" = "1" ]; then + data_off + else data_on sleep 2 # Give data time to connect check_data_connection - else - data_off fi battery_saver_on set_cpu_max "$IDLE_MAX_CPU_FREQ"