aboutsummaryrefslogtreecommitdiffstats
path: root/hyperterm/themes/special.sh
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-02-10 13:52:52 -0500
committerJesús <heckyel@hyperbola.info>2021-02-10 13:52:52 -0500
commit7e95c3b667a1b353f8275db886203f272bfcce34 (patch)
treeaefe3b7db69ac78b83b79a70cf43401679812d20 /hyperterm/themes/special.sh
downloadhyperterm-7e95c3b667a1b353f8275db886203f272bfcce34.tar.lz
hyperterm-7e95c3b667a1b353f8275db886203f272bfcce34.tar.xz
hyperterm-7e95c3b667a1b353f8275db886203f272bfcce34.zip
first commit
Diffstat (limited to 'hyperterm/themes/special.sh')
-rw-r--r--hyperterm/themes/special.sh39
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\] }"