diff options
Diffstat (limited to 'prompt')
-rwxr-xr-x | prompt | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,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 |