change locale to en_US

This commit is contained in:
csimonis 2024-11-21 10:32:21 +01:00
parent 9726810f07
commit f60c441131

View File

@ -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