14 lines
286 B
Bash
14 lines
286 B
Bash
# Uncomment german locale
|
|
sed -i 's/^# *\(de_DE.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
|
|
|
|
# Restart shell
|
|
bash
|