From 20acd94be5291d3411d93405b667948ca8c4a1a1 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sun, 15 Jan 2023 15:09:42 +0000 Subject: [PATCH] Use US English by default --- roles/home-cli/files/profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/home-cli/files/profile b/roles/home-cli/files/profile index 2b89b0b..047fd95 100644 --- a/roles/home-cli/files/profile +++ b/roles/home-cli/files/profile @@ -41,7 +41,7 @@ fi export TZ=Europe/London # Can override this elsewhere if needed. if ! [ -f "$XDG_CONFIG_HOME/locale.conf" ] && [ -x /usr/bin/locale ] then - LANG="en_GB.UTF-8" /usr/bin/locale > "$XDG_CONFIG_HOME/locale.conf" + LANG="en_US.UTF-8" /usr/bin/locale > "$XDG_CONFIG_HOME/locale.conf" fi if [ -r "$XDG_CONFIG_HOME/locale.conf" ] then @@ -216,7 +216,7 @@ alias zlu="zypper list-updates" # Language aliases. ## Fedora/RHEL/CentOS: dnf install glibc-langpack-{en,fr} alias C="LANG=C.UTF-8" -alias en="LANG=en_GB.UTF-8" +alias en="LANG=en_US.UTF-8" alias fr="LANG=fr_FR.UTF-8" # Alias dig to drill if dig is not installed.