tweak(qtile): ignore docker network interfaces

This commit is contained in:
Infinidoge 2022-03-18 00:00:00 -04:00
parent bdf03ad42e
commit 8560ee515f

View file

@ -529,7 +529,7 @@ def init_widget_list(main=True, laptop=False):
]
for i, interface in enumerate(
os.popen(
"ifconfig -s | awk {'print $1'} | grep -Ev -e Iface -e lo -e vir.+ | tac"
"ifconfig -s | awk {'print $1'} | grep -Ev -e Iface -e lo -e vir.+ -e docker.+ | tac"
)
.read()
.splitlines()