From 85ae438fbc238fe56bcb1c10a12ec52365053cb6 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Sat, 26 Feb 2022 20:31:12 +0530 Subject: dwmbar dotfiles --- modules/localip | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 modules/localip (limited to 'modules/localip') diff --git a/modules/localip b/modules/localip new file mode 100755 index 0000000..91a74c0 --- /dev/null +++ b/modules/localip @@ -0,0 +1,14 @@ +#!/bin/bash + +# Prints out your local IP + +PREFIX='ﯱ ' + +get_local_ip() +{ + IP=$(ip addr | grep -e "inet " | awk 'NR==2' | sed 's/^.*inet.//g; s/\/.*//g') + + echo "$PREFIX$IP" +} + +get_local_ip -- cgit v1.2.3-59-g8ed1b