From 3777d4d8b8f3df6a321ccbb87e98cf5560d850a8 Mon Sep 17 00:00:00 2001 From: David Runge Date: Thu, 9 Mar 2017 14:02:37 +0100 Subject: .zsh.after/export.zsh: Adding exports for LANG, LC_TIME and LC_MONETARY if seaked locales are available in the system. --- .zsh.after/export.zsh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to '.zsh.after') diff --git a/.zsh.after/export.zsh b/.zsh.after/export.zsh index f06613e..fafea00 100644 --- a/.zsh.after/export.zsh +++ b/.zsh.after/export.zsh @@ -4,8 +4,18 @@ if [[ -n $TMUX ]];then else export TERM="xterm-color" fi -# use de_DE.UTF-8 to get 24h format -export LC_TIME=de_DE.UTF-8 + + +available_locale=$(locale -a|tr '\n' ' ') +if test "${available_locale#*en_DK.utf8}" != $available_locale; then + export LC_TIME="en_DK.UTF-8" +fi +if test "${available_locale#*de_DE.utf8}" != $available_locale; then + export LC_MONETARY="de_DE.UTF-8" +fi +if test "${available_locale#*en_US.utf8}" != $available_locale; then + export LANG="en_US.UTF-8" +fi # keyboard exports for sway export XKB_DEFAULT_LAYOUT=de -- cgit v1.2.3-54-g00ecf