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