From 22360b18c4c41d62152b30294b350d25511472e9 Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 8 Mar 2017 19:23:17 +0100 Subject: .zsh.after/functions.zsh: Adding support to export .asc files using gpg within ex(). --- .zsh.after/functions.zsh | 3 +++ 1 file changed, 3 insertions(+) (limited to '.zsh.after') diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh index 5be8e73..b089ff6 100644 --- a/.zsh.after/functions.zsh +++ b/.zsh.after/functions.zsh @@ -149,6 +149,9 @@ ex() { *.gpg) gpg -o ${1%".gpg"} -d $1 ;; + *.asc) + gpg -o ${1%".asc"} -d $1 + ;; *.gz) gunzip $1 ;; -- cgit v1.2.3-70-g09d2 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-70-g09d2