mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-30 18:49:23 +08:00
14 lines
303 B
Bash
14 lines
303 B
Bash
#!/bin/bash
|
|
|
|
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
|
|
|