You've already forked powerlevel10k
mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2025-07-11 14:30:24 +02:00
Interface States can be unsorted
This commit is contained in:
@ -405,9 +405,13 @@ function p9k::parseIp() {
|
||||
continue
|
||||
fi
|
||||
# Check if interface is UP.
|
||||
if [[ "${interface/${newline}/}" =~ "<UP(,)?[^>]*>(.*)inet[ ]+([^ ]*)" ]]; then
|
||||
echo "${match[3]}"
|
||||
return 0
|
||||
if [[ "${interface/${newline}/}" =~ "<([^>]*)>(.*?)inet[ ]+([^ ]*)" ]]; then
|
||||
local ipFound="${match[3]}"
|
||||
local -a interfaceStates=(${(s:,:)match[1]})
|
||||
if [[ "${interfaceStates[(r)UP]}" == "UP" ]]; then
|
||||
echo "${ipFound}"
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
done
|
||||
else
|
||||
|
Reference in New Issue
Block a user