dotfiles/scripts/show-pIP.sh

14 lines
240 B
Bash
Raw Permalink Normal View History

2021-11-13 19:22:38 +01:00
#!/bin/bash
# Script to show Public IP for Conky.
# Created by q3aql (q3aql@duck.com)
# Licensed by GPL v.2
# Date: 27-11-2016
# --------------------------------------
pIP_FILE=$HOME/.pIP/pIP
if [ -f $pIP_FILE ]; then
cat $pIP_FILE
fi