mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
17 lines
278 B
Text
17 lines
278 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Prints out if there is an ethernet cable connected
|
||
|
|
||
|
ETHERNET_ICON=''
|
||
|
|
||
|
get_ethernet()
|
||
|
{
|
||
|
if [ -d /sys/class/net/eth? ]; then
|
||
|
if [ "$(cat /sys/class/net/eth?/carrier)" == "1" ]; then
|
||
|
echo "$ETHERNET_ICON"
|
||
|
fi
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
get_ethernet
|