Update 3 files

- /home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl
- /home/dot_bashrc
This commit is contained in:
Brian Zalewski 2023-01-06 00:03:11 +00:00
parent 54b45c50e9
commit 7a3e2eaefc
2 changed files with 3 additions and 4 deletions

View file

@ -3,7 +3,9 @@
# Prefer US English # Prefer US English
export LANG="en_US" export LANG="en_US"
export LC_ALL="en_US" if [[ "$(hostname)" != *'-minimal' ]]; then
export LC_ALL="en_US.UTF-8"
fi
# Detect support for advanced terminal features # Detect support for advanced terminal features
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
@ -17,9 +19,6 @@ fi
### Fig / LC_ALL ### Fig / LC_ALL
if [ "$BASH_SUPPORT" = 'true' ]; then if [ "$BASH_SUPPORT" = 'true' ]; then
if [[ "$(hostname)" != *'-minimal' ]]; then
export LC_ALL="en_US.UTF-8"
fi
if [ -f "$HOME/.fig/shell/bashrc.pre.bash" ]; then if [ -f "$HOME/.fig/shell/bashrc.pre.bash" ]; then
. "$HOME/.fig/shell/bashrc.pre.bash" . "$HOME/.fig/shell/bashrc.pre.bash"
fi fi