blob: bce44803ea3d1c78aeb68e124f198b45f6a4cf03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/env bash
dot="$(cd "$(dirname "$0")"; pwd)"
command="$1"
if [[ "$command" == "--zsh" ]]; then
$dot/prompt.zsh
fi
if [[ "$command" == "--bash" || "$command" == "" ]]; then
$dot/prompt.bash
fi
|