Change to C as language

This commit is contained in:
John Mertz 2022-11-04 18:35:26 -04:00
parent 9e7f73e7e5
commit 3f92d1f304
2 changed files with 7 additions and 9 deletions

View File

@ -15,11 +15,10 @@ ssh-agent -a "$SSH_AUTH_SOCK" >/dev/null
# Static/predictable Sway socket # Static/predictable Sway socket
export SWAYSOCK=`sway --get-socketpath` export SWAYSOCK=`sway --get-socketpath`
# Standardize language on en_US because of the ubiquity export LANG="C"
export LANG="en_US.UTF-8" export LC_ALL="C"
export LANGUAGE="en_US.UTF-8" export LC_CTYPE="C"
export LC_CTYPE="en_US.UTF-8" export LANGUAGE="en_US:en"
export LC_ALL="en_US.UTF-8"
# Dirty config dir # Dirty config dir
export XDG_DATA_HOME="${HOME}/.config" export XDG_DATA_HOME="${HOME}/.config"

View File

@ -81,11 +81,10 @@ STUDIO_JDK=/usr/lib/jvm/jre-openjdk
# Configure PATH # Configure PATH
source "$HOME/.dotfiles/bash/path" source "$HOME/.dotfiles/bash/path"
# Standardize language export LANG="C.UTF-8"
export LANG="en_US.UTF-8" export LC_ALL="C.UTF-8"
export LC_CTYPE="C.UTF-8"
export LANGUAGE="en_US:en" export LANGUAGE="en_US:en"
export LC_ALL="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
# terminal type # terminal type
export TERM="xterm" export TERM="xterm"