Astound d2d1893cfd
All checks were successful
CI Pipeline / shasums (push) Successful in 1m5s
git-sync-with-mirror / git-sync (push) Successful in 2m26s
CI Pipeline / build (push) Successful in 2m16s
update themes
2025-08-12 17:37:31 -05:00

30 lines
511 B
Bash

#!/bin/bash
unset simple
# Import colors
_colors_bash "$@"
__time_out_command() {
awk '{ print $1 }' /proc/loadavg
}
PROMPT_COMMAND='
ps1_status="$(exitstatus)"
ps1_load="$(__time_out_command)"
ps1_git="$(__prompt_git)"
'
: "${simple:=\n\
\[${RESET}\]\
\[${BOLD}${GREY}\]\
\${ps1_status}\[$RESET\] \
\[${BOLD}${GREY}\]\
\${ps1_load}\[$RESET\] \
\[${BOLD}${WHITE}\]\W\[$RESET\]\
\${ps1_git}\n\
\[${BOLD}${GREEN}\]$SYMBOL \[$RESET\]}"
unset _psi
: "${_psi:=\[${BOLD}${CYAN}\]=>\[$RESET\] }"