From 3f92d1f30412ce9df4228bd4a12f927852588a0f Mon Sep 17 00:00:00 2001 From: John Mertz Date: Fri, 4 Nov 2022 18:35:26 -0400 Subject: [PATCH] Change to C as language --- bash/bash_login | 9 ++++----- bash/bashrc | 7 +++---- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/bash/bash_login b/bash/bash_login index 8579373c2..e1db2fab7 100644 --- a/bash/bash_login +++ b/bash/bash_login @@ -15,11 +15,10 @@ ssh-agent -a "$SSH_AUTH_SOCK" >/dev/null # Static/predictable Sway socket export SWAYSOCK=`sway --get-socketpath` -# Standardize language on en_US because of the ubiquity -export LANG="en_US.UTF-8" -export LANGUAGE="en_US.UTF-8" -export LC_CTYPE="en_US.UTF-8" -export LC_ALL="en_US.UTF-8" +export LANG="C" +export LC_ALL="C" +export LC_CTYPE="C" +export LANGUAGE="en_US:en" # Dirty config dir export XDG_DATA_HOME="${HOME}/.config" diff --git a/bash/bashrc b/bash/bashrc index f3b62feeb..3e1e53340 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -81,11 +81,10 @@ STUDIO_JDK=/usr/lib/jvm/jre-openjdk # Configure PATH source "$HOME/.dotfiles/bash/path" -# Standardize language -export LANG="en_US.UTF-8" +export LANG="C.UTF-8" +export LC_ALL="C.UTF-8" +export LC_CTYPE="C.UTF-8" export LANGUAGE="en_US:en" -export LC_ALL="en_US.UTF-8" -export LC_CTYPE="en_US.UTF-8" # terminal type export TERM="xterm"