8 lines
238 B
Python
8 lines
238 B
Python
import requests
|
|
from theme import current_theme, default
|
|
|
|
ip = requests.get("https://api64.ipify.org").text.strip()
|
|
|
|
bright = f"^v^^c{current_theme.dark_cyan}^"
|
|
icon = f"^v^^c{current_theme.cyan}^"
|
|
content = f"{icon} {bright}{ip}^t^"
|