diff options
Diffstat (limited to 'hyperterm/themes/pure.sh')
-rw-r--r-- | hyperterm/themes/pure.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/hyperterm/themes/pure.sh b/hyperterm/themes/pure.sh new file mode 100644 index 0000000..a4fbdb3 --- /dev/null +++ b/hyperterm/themes/pure.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +unset pure + +# Import colors +_colors_bash "$@" + +: "${pure:=\ +\[${BOLD}${GREEN}\]\u\[$RESET\] \ +\[${BOLD}${YELLOW}\][\ +\[${BOLD}${RED}\]\w\ +\[${BOLD}${YELLOW}\]]\[$RESET\] \ +\$(exitstatus)\[$RESET\] \ +\[${BOLD}${BLUE}\](\$(date +%H:%M:%S))\ +\$( _prompt_is_on_git &> /dev/null && \ + echo -n \" \[${BOLD}${WHITE}\]on\[$RESET\] \" && \ + echo -n \"\$(_prompt_get_git_info)\" && \ + echo -n \"\[${BOLD}${RED}\]\$(_get_git_progress)\" && \ + echo -n \"\[$RESET\]\")\ +\n\[${BOLD}${CYAN}\]$SYMBOL \[$RESET\]}" + +unset _psi +: "${_psi:=\[${BOLD}${CYAN}\]=>\[$RESET\] }" |