fix(config/qtile): fix interface exclusion (vir -> vir.+)

This commit is contained in:
Infinidoge 2021-10-28 11:54:48 -04:00
parent b7c254775e
commit 3397b4c778

View file

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