mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
14 lines
177 B
Bash
Executable file
14 lines
177 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Prints out if there is an internet connection
|
|
# Requires an internet connection
|
|
|
|
INTERNET_ICON=''
|
|
|
|
get_internet()
|
|
{
|
|
echo "$INTERNET_ICON"
|
|
}
|
|
|
|
get_internet
|
|
|