add nnn configs

This commit is contained in:
Simon Belmont 2025-03-24 12:56:20 -04:00
parent b0345efb7e
commit cba9e9e72b
59 changed files with 5175 additions and 1 deletions

13
.config/nnn/plugins/ipinfo Executable file
View 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 _