diff options
| author | jstmax! <maxwasmailed@proton.me> | 2025-11-12 19:28:17 +0100 |
|---|---|---|
| committer | jstmax! <maxwasmailed@proton.me> | 2025-11-12 19:28:17 +0100 |
| commit | c0aeec251c93a9bec58971e1718e7969b53c94ba (patch) | |
| tree | 7a558eb85f0536f77cc682ae994b33df70574236 /cfg/i3/fetch_public_ip.sh | |
| parent | ddb7571613fa9beadf12f14999a7634a255291ad (diff) | |
updated kurobar script and added fetch pub. ip script to i3 folder
Diffstat (limited to 'cfg/i3/fetch_public_ip.sh')
| -rwxr-xr-x | cfg/i3/fetch_public_ip.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cfg/i3/fetch_public_ip.sh b/cfg/i3/fetch_public_ip.sh new file mode 100755 index 0000000..e2d2819 --- /dev/null +++ b/cfg/i3/fetch_public_ip.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +while true; do + curl -s ifconfig.me > ~/.config/i3/public_ip.txt + sleep 3600 +done & |