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