Commit a53cbdbc authored by Dylan Araps's avatar Dylan Araps

general: Fix prompt on openBSD

parent 8c277ac7
......@@ -4132,7 +4132,11 @@ dynamic_prompt() {
fi
# Set the prompt location.
((lines > 1)) && printf "%b" "\\e[${lines}B"
if ((lines > 1)) && [[ "$kernel_name" != "OpenBSD" ]]; then
printf "%b" "\\e[${lines}B"
else
tput cub "$lines"
fi
}
old_functions() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment