initial retooling #1

Merged
naturallaw777 merged 1130 commits from staging-dev into stable 2026-05-21 08:10:11 -05:00
Showing only changes of commit 8ea133a2a1 - Show all commits
+2 -2
View File
@@ -3293,7 +3293,7 @@ async def api_system_set_timezone(req: TimezoneRequest):
result = await loop.run_in_executor(
None,
lambda: subprocess.run(
["sudo", "timedatectl", "set-timezone", tz],
["timedatectl", "set-timezone", tz],
capture_output=True,
text=True,
timeout=15,
@@ -3336,7 +3336,7 @@ async def api_system_set_locale(req: LocaleRequest):
result = await loop.run_in_executor(
None,
lambda: subprocess.run(
["sudo", "localectl", "set-locale", f"LANG={locale}"],
["localectl", "set-locale", f"LANG={locale}"],
capture_output=True,
text=True,
timeout=15,