mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
13 lines
122 B
Text
13 lines
122 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Prints out your local IP
|
||
|
|
||
|
PREFIX='ﯱ '
|
||
|
|
||
|
get_local_ip()
|
||
|
{
|
||
|
echo "$PREFIX$(hostname -i)"
|
||
|
}
|
||
|
|
||
|
get_local_ip
|