From cee344c569aac8afd6d8480706e8b988fca9911b Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Mon, 2 Nov 2020 17:20:15 -0600 Subject: [PATCH] Updating whatismyip to use elinks instead of lynx --- UserScripts/whatismyip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UserScripts/whatismyip b/UserScripts/whatismyip index 93b2696..7ee9504 100755 --- a/UserScripts/whatismyip +++ b/UserScripts/whatismyip @@ -1,2 +1,2 @@ #!/bin/bash -/usr/bin/lynx -connect_timeout=5 -read_timeout=5 --dump whatismyipaddress.com | grep '/ip/' | head -n 1 | cut -f 5 -d '/' +timeout 5 /usr/bin/elinks --dump whatismyipaddress.com | grep '/ip/' | head -n 1 | cut -f 5 -d '/'