diff options
Diffstat (limited to 'hyperterm/themes/special.sh')
-rw-r--r-- | hyperterm/themes/special.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/hyperterm/themes/special.sh b/hyperterm/themes/special.sh new file mode 100644 index 0000000..3820573 --- /dev/null +++ b/hyperterm/themes/special.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# shellcheck disable=SC1117 + +unset special + +# Import colors +_colors_bash "$@" + +_prompt_local_name() { + case ${LANG/_*/} in + es) + printf "UbicaciĆ³n Actual:" + ;; + *) + printf "Current Location:" + ;; + esac +} + +special=("\n\ +\[$RESET\]\ +\[${BOLD}${YELLOW}\][$(_prompt_local_name)\ +\[$RESET\] \[${BOLD}${GREY}\]\w\ +\[${BOLD}${YELLOW}\]]\[$RESET\] \ +\[${BOLD}${CYAN}\]hist:\!\[$RESET\]\n\ +\[${BOLD}${GREY}\]\ +\D{%Y-%m-%d}@\D{%I:%M%p}\[$RESET\] \ +\$(exitstatus)\[$_PROMPT_RESET\]\ +\$( _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}${GREEN}\]$SYMBOL \[$RESET\]") + +export special + +unset _psi +: "${_psi:=\[${BOLD}${CYAN}\]=>\[$RESET\] }" |