27 lines
912 B
Bash
27 lines
912 B
Bash
export ENV="$HOME/.kshrc"
|
|
export PATH="$HOME/.local/bin":"$PATH":"/usr/lib/jvm/default-jdk/bin":"$HOME/.cargo/bin"
|
|
export MANPATH="/usr/local/man":"$MANPATH"
|
|
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig
|
|
export XKB_DEFAULT_LAYOUT=de
|
|
export EDITOR=/usr/bin/vis
|
|
|
|
export XBPS_DISTDIR="$HOME/void-packages"
|
|
export CHEZSCHEMELIBDIRS="/usr/local/lib/csv10.3.0/":"$CHEZSCHEMELIBDIRS"
|
|
|
|
is_login() {
|
|
echo "$-" | grep -q l && test "$(tty)" = '/dev/tty1'
|
|
}
|
|
if is_login; then
|
|
cd
|
|
echo 'Press return to start gui'
|
|
read && exec startx
|
|
fi
|
|
|
|
|
|
# BEGIN opam configuration
|
|
# This is useful if you're using opam as it adds:
|
|
# - the correct directories to the PATH
|
|
# - auto-completion for the opam binary
|
|
# This section can be safely removed at any time if needed.
|
|
test -r '/home/a/.opam/opam-init/init.sh' && . '/home/a/.opam/opam-init/init.sh' > /dev/null 2> /dev/null || true
|
|
# END opam configuration
|