Added temperature if available

This commit is contained in:
Thomas FORGIONE 2016-11-22 19:27:12 +01:00
parent b8ee6c7e71
commit 6312f392e4
No known key found for this signature in database
GPG Key ID: 2B5C8A9986271A42
1 changed files with 5 additions and 1 deletions

View File

@ -60,11 +60,15 @@ fi
local return_code=""
local git_branch='$(git_prompt_info)'
local PR_TEMP=""
command -v vcgencmd > /dev/null && PR_TEMP='${PR_GREEN}$(vcgencmd measure_temp | cut -d = -f 2)${PR_NO_COLOR} '
#PROMPT="${user_host} ${current_dir} ${rvm_ruby}${git_branch}$PR_PROMPT "
separator='${PR_YELLOW}::${PR_NO_COLOR}'
tty | read tty_value
if [[ $tty_value == *pts* ]]; then # if in a tty
PROMPT="$PR_ARROW_UP${user_host}${separator}${PR_NO_COLOR}${current_dir} ${rvm_ruby} ${git_branch}
PROMPT="$PR_ARROW_UP${user_host}${separator}${PR_NO_COLOR}${current_dir} ${rvm_ruby} ${git_branch}${PR_TEMP}
$PR_ARROW_DOWN$PR_PROMPT ${PR_NO_COLOR}"
return_code="%(?.%{$PR_GREEN%}%? ↵%{$PR_NO_COLOR%}.%{$PR_RED%}%? ↵%{$PR_NO_COLOR%})"
else