소스 검색

Fix bug in __my_ps1_bttry

pull/1/head
10sr 10 년 전
부모
커밋
d292a51219
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      shrc

+ 2
- 2
shrc 파일 보기

@@ -1071,7 +1071,7 @@ __my_battery_status(){
___st=$(cat $___dir/status)
___full=$(cat $___dir/charge_full)
___now=$(cat $___dir/charge_now)
___rate=$(expr $now \* 100 / $full)
___rate=$(expr "$___now" \* 100 / "$___full")
printf "$1" "${___st}:${___rate}%"
fi
}
@@ -1131,7 +1131,7 @@ __my_ps1_bttry(){
then
test -f $___bst && ___bstr="$(cat $___bst)"
test -n "$___bstr" && ! echo $___bstr | grep 100 >/dev/null 2>&1 && \
echo "[Battery:$___bstr]"
echo "[Battery:${___bstr}]"
__my_battery_status %s >$___bst &
fi
}


불러오는 중...
취소
저장