From 93d8296e491ad95d628854c1a68c5739ba27bce3 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Tue, 4 Aug 2026 05:09:40 -0400 Subject: [PATCH] Another way to detect wifi cards. --- tcshrc.system.Linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcshrc.system.Linux b/tcshrc.system.Linux index 55ee948..bba77f6 100644 --- a/tcshrc.system.Linux +++ b/tcshrc.system.Linux @@ -24,7 +24,7 @@ if( ${#battery_locations} > 0 ) then end endif -set wireless_cards=( `lspci | grep Wireless` ) +set wireless_cards=( `lspci | grep '\(WiFi\|Wireless\)'` ) if( $#wireless_cards > 0 ) then setenv CSHENV_ENABLE_PROMPT_WIFI endif