From 5a09a88af432119ab6b99cd02dc59271b763abf1 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Fri, 5 Feb 2021 18:43:10 +0000 Subject: [PATCH] Load .config/locale.conf if it exists --- roles/home-cli/files/shrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/home-cli/files/shrc b/roles/home-cli/files/shrc index 7782ff1..7ad6ba5 100644 --- a/roles/home-cli/files/shrc +++ b/roles/home-cli/files/shrc @@ -53,6 +53,9 @@ set -o noclobber export LC_ALL='' export TIME_STYLE="long-iso" # Used by GNU 'ls'. ## Set the default language. +if [ -r "$HOME/.config/locale.conf" ]; then + . "$HOME/.config/locale.conf" +fi case "$LANG" in "en_GB.UTF-8") LANGUAGE="en_GB:en"