From 5cdc02f3d00cf5685f0b14acee1ee74d7246517f Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 28 Oct 2021 08:27:10 -0400 Subject: [PATCH] infinidoge/config/qtile: ignore vir* interfaces --- users/infinidoge/config/qtile/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/infinidoge/config/qtile/config.py b/users/infinidoge/config/qtile/config.py index 92a0856..8dc3001 100644 --- a/users/infinidoge/config/qtile/config.py +++ b/users/infinidoge/config/qtile/config.py @@ -512,7 +512,7 @@ def init_widget_list(main=True, laptop=False): ] for i, interface in enumerate( os.popen( - "ifconfig -s | grep -wv -e Iface -e lo | awk {'print $1'} | tac" + "ifconfig -s | grep -wv -e Iface -e lo -e vir | awk {'print $1'} | tac" ) .read() .splitlines()