mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-03-13 08:59:22 +00:00
14 lines
143 B
Text
14 lines
143 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints out if there is an internet connection
|
||
|
|
||
|
INTERNET_ICON=''
|
||
|
|
||
|
get_internet()
|
||
|
{
|
||
|
echo "$INTERNET_ICON"
|
||
|
}
|
||
|
|
||
|
get_internet
|
||
|
|