summaryrefslogtreecommitdiff
path: root/cfg/i3/fetch_public_ip.sh
diff options
context:
space:
mode:
authorjstmax! <maxwasmailed@proton.me>2025-11-12 19:28:17 +0100
committerjstmax! <maxwasmailed@proton.me>2025-11-12 19:28:17 +0100
commitc0aeec251c93a9bec58971e1718e7969b53c94ba (patch)
tree7a558eb85f0536f77cc682ae994b33df70574236 /cfg/i3/fetch_public_ip.sh
parentddb7571613fa9beadf12f14999a7634a255291ad (diff)
updated kurobar script and added fetch pub. ip script to i3 folder
Diffstat (limited to 'cfg/i3/fetch_public_ip.sh')
-rwxr-xr-xcfg/i3/fetch_public_ip.sh6
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 &