[bash] Fix sourcing of xdg vars and terminfo
Fixed setting up the initial variable pointing to the xdg directory to enable bash to source its files from the `.config environment`
This commit is contained in:
parent
3a40925615
commit
75a8978a0a
2 changed files with 6 additions and 1 deletions
|
|
@ -43,4 +43,6 @@ export LANG="en_US.UTF-8"
|
|||
export SHELL=${SHELL:-/bin/bash}
|
||||
|
||||
# if terminfo for our terminal emulator does not exist fall back to xterm
|
||||
[ "$(find /usr/share/terminfo -name "$TERMINAL*" | wc -l)" -eq 0 ] && export TERM=xterm
|
||||
if [ "$(find /usr/share/terminfo -name "$TERMINAL*" | wc -l)" -eq 0 ] || [ -z "$TERMINAL" ]; then
|
||||
export TERM=xterm
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue