pull/1300/head
wzy 4 years ago committed by GitHub
parent 3920940ea8
commit 6d545d5dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1341,10 +1341,10 @@ _p9k_prompt_battery_set_args() {
if _p9k_read_file $dir/(power|current)_now(N) && (( $#_p9k__ret < 9 )); then if _p9k_read_file $dir/(power|current)_now(N) && (( $#_p9k__ret < 9 )); then
(( power_now += ${pow::=$_p9k__ret} )) (( power_now += ${pow::=$_p9k__ret} ))
fi fi
if _p9k_read_file $dir/(energy|charge)_now(N); then if _p9k_read_file $dir/capacity(N); then
(( energy_now += _p9k__ret ))
elif _p9k_read_file $dir/capacity(N); then
(( energy_now += _p9k__ret * full / 100. + 0.5 )) (( energy_now += _p9k__ret * full / 100. + 0.5 ))
elif _p9k_read_file $dir/(energy|charge)_now(N); then
(( energy_now += _p9k__ret ))
fi fi
_p9k_read_file $dir/status(N) && local bat_status=$_p9k__ret || continue _p9k_read_file $dir/status(N) && local bat_status=$_p9k__ret || continue
[[ $bat_status != Full ]] && is_full=0 [[ $bat_status != Full ]] && is_full=0

Loading…
Cancel
Save