summaryrefslogtreecommitdiff
path: root/cfg/i3/fetch_public_ip.sh
blob: e2d2819efc21da8b564abed9aed974fbe8ba5ef9 (plain)
1
2
3
4
5
6
#!/usr/bin/env bash

while true; do
    curl -s ifconfig.me > ~/.config/i3/public_ip.txt
    sleep 3600
done &