From f60c4411316989fc219232492082e135147f9827 Mon Sep 17 00:00:00 2001 From: csimonis Date: Thu, 21 Nov 2024 10:32:21 +0100 Subject: [PATCH] change locale to en_US --- sh/locales.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sh/locales.sh b/sh/locales.sh index 3e02d7b..9c1adb3 100644 --- a/sh/locales.sh +++ b/sh/locales.sh @@ -1,13 +1,13 @@ # Uncomment german locale -sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen +sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen # Generate locale locale-gen # Export env vars -echo "export LC_ALL=de_DE.UTF-8" >> ~/.bashrc -echo "export LANG=de_DE.UTF-8" >> ~/.bashrc -echo "export LANGUAGE=de_DE.UTF-8" >> ~/.bashrc +echo "export LC_ALL=en_US.UTF-8" >> ~/.bashrc +echo "export LANG=en_US.UTF-8" >> ~/.bashrc +echo "export LANGUAGE=en_US.UTF-8" >> ~/.bashrc # Restart shell bash