G
Ryan's Git Repos
nix-files
files
log
graph
refs
Ref
main
users/ryan/modules/simple-bar/simple-bar-source/lib/scripts/netstats.sh
main
· 169 B · 5 lines
raw
1
#!/bin/bash
2
3
# Optimized: Single netstat call with direct output processing
4
netstat -w1 2>&
1
| awk
'NR==3 {printf "{ \"download\": %s, \"upload\": %s}", $4, $6; exit}'
5