mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-26 01:04:06 +08:00
17 lines
358 B
Bash
17 lines
358 B
Bash
#!/bin/bash
|
|
|
|
# export LC_ALL=zh_CN.utf-8
|
|
export LC_ALL=en_US.utf-8
|
|
|
|
export CTX_ROOT=${CTX_ROOT:=~/contexts}
|
|
export GOROOT=$CTX_ROOT/usr/local/go
|
|
|
|
export PATH=$CTX_ROOT/bin:$CTX_ROOT/usr/local/bin:$GOROOT/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
|
|
|
|
if [ -f ~/.ish/plug.sh ] && source ~/.ish/plug.sh; then
|
|
require conf.sh
|
|
|
|
ish_ctx_cli_prompt
|
|
fi
|
|
|