cdn/sh/locales.sh

14 lines
286 B
Bash
Raw Normal View History

2024-11-02 21:33:03 +01:00
# Uncomment german locale
2024-11-21 10:32:21 +01:00
sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen
2024-11-02 21:33:03 +01:00
# Generate locale
locale-gen
# Export env vars
2024-11-21 10:32:21 +01:00
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
2024-11-02 21:33:03 +01:00
# Restart shell
bash