diff options
author | Daniel Weipert <code@drogueronin.de> | 2022-02-09 13:22:14 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-02-09 13:22:14 +0100 |
commit | eecf8483401d4b4296a62fe0c12977a47ba27651 (patch) | |
tree | 2e35261b520e5c0e93b801046c3bcc4dbc74999a | |
parent | b1aeec815aa4027700780286ec153a819a8a9c7b (diff) |
Set LANG to en and LC_TIME to de
-rw-r--r-- | install-arch.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install-arch.sh b/install-arch.sh index 4f92328..aa584e4 100644 --- a/install-arch.sh +++ b/install-arch.sh @@ -66,7 +66,8 @@ ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime hwclock --systohc locale-gen -echo "LANG=de_DE.UTF-8" > /etc/locale.conf +echo "LANG=en_US.UTF-8" > /etc/locale.conf +echo "LC_TIME=de_DE.UTF-8" >> /etc/locale.conf echo "KEYMAP=de-latin1" > /etc/vconsole.conf |