mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
allow network interface to contain colon
This commit is contained in:
parent
5f610a0af9
commit
9e505d3dc1
1 changed files with 1 additions and 1 deletions
|
@ -3052,7 +3052,7 @@ function _p9k_set_iface() {
|
|||
local line
|
||||
local iface
|
||||
for line in ${(f)"$(/sbin/ifconfig 2>/dev/null)"}; do
|
||||
if [[ $line == (#b)([^[:space:]:]##):[[:space:]]##flags=(<->)'<'* ]]; then
|
||||
if [[ $line == (#b)([^[:space:]]##):[[:space:]]##flags=(<->)'<'* ]]; then
|
||||
[[ $match[2] == *[13579] ]] && iface=$match[1] || iface=
|
||||
elif [[ -n $iface && $line == (#b)[[:space:]]##inet[[:space:]]##([0-9.]##)* ]]; then
|
||||
_p9k_iface[$iface]=$match[1]
|
||||
|
|
Loading…
Reference in a new issue