From ab62e6aca209988c969e730709a160c802693b2b Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Fri, 20 Nov 2020 07:47:43 -0500 Subject: [PATCH] Add Internet address to status --- home/lib/login_functions.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home/lib/login_functions.sh b/home/lib/login_functions.sh index 9af3af1..dbde373 100644 --- a/home/lib/login_functions.sh +++ b/home/lib/login_functions.sh @@ -427,6 +427,10 @@ flat_top_5() { ' } +internet_addr() { + curl --silent --show-error --max-time "${1:=1}" 'https://api.ipify.org' 2>&1 +} + status_batt() { case "$(uname)" in 'Linux') @@ -536,6 +540,8 @@ status() { echo echo 'net' + echo "${indent_unit}internet" + echo "${indent_unit}${indent_unit}$(internet_addr 0.5)" echo "${indent_unit}if" (ifconfig; iwconfig) 2> /dev/null \ | awk ' -- 2.20.1