mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-19 12:23:03 +01:00
11 lines
206 B
Bash
11 lines
206 B
Bash
export TERM=xterm-xfree86
|
|
export LC_ALL=en_US.UTF-8
|
|
export LANG=en_US.UTF-8
|
|
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|