14 lines
311 B
Bash
Executable File
14 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export MB_ENV_BASE=$(pwd)
|
|
|
|
export XDG_CONFIG_HOME=${MB_ENV_BASE}/config
|
|
export XDG_DATA_HOME=${MB_ENV_BASE}/local/share
|
|
export PATH=${MB_ENV_BASE}/bin:${PATH}
|
|
export TERM=xterm-256color
|
|
export TERMINFO=${MB_ENV_BASE}/share/terminfo
|
|
export SHELL=${MB_ENV_BASE}/bin/fish
|
|
|
|
|
|
${MB_ENV_BASE}/bin/fish.sh
|