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