dwmbar/modules/localip
2019-11-06 16:26:36 +00:00

14 lines
189 B
Bash
Executable file

#!/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