Prevent errors in prompts if no info available.
Define empty functions instead of none at all if we can't figure out the platform.
This commit is contained in:
parent
e30a1243dc
commit
8cfc7d6677
@ -79,4 +79,14 @@ elif [[ $(uname) == "Linux" ]] ; then
|
|||||||
echo "∞"
|
echo "∞"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
# Empty functions so we don't cause errors in prompts
|
||||||
|
function battery_pct_remaining() {
|
||||||
|
}
|
||||||
|
|
||||||
|
function battery_time_remaining() {
|
||||||
|
}
|
||||||
|
|
||||||
|
function battery_pct_prompt() {
|
||||||
|
}
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user