add nnn configs
This commit is contained in:
parent
b0345efb7e
commit
cba9e9e72b
59 changed files with 5175 additions and 1 deletions
13
.config/nnn/plugins/ipinfo
Executable file
13
.config/nnn/plugins/ipinfo
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# Description: Shows the external IP address and whois information. Useful over VPNs.
|
||||
#
|
||||
# Shell: POSIX compliant
|
||||
# Author: Arun Prakash Jana
|
||||
|
||||
IP=$(curl -s ifconfig.me)
|
||||
|
||||
whois "$IP"
|
||||
echo your external IP address is "$IP"
|
||||
|
||||
read -r _
|
Loading…
Add table
Add a link
Reference in a new issue