fix(qtile): update interface list pipeline

This commit is contained in:
Infinidoge 2022-05-25 10:09:58 -04:00
parent 76603494c0
commit b89e526e99

View file

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