mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
16 lines
278 B
Bash
Executable file
16 lines
278 B
Bash
Executable file
#!/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
|