mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
13 lines
153 B
Bash
Executable file
13 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Prints out your public IP address
|
|
# Depends on curl
|
|
|
|
PREFIX=' '
|
|
|
|
get_pub_ip()
|
|
{
|
|
echo "$PREFIX$(curl -s ifconfig.co)"
|
|
}
|
|
|
|
get_pub_ip
|