Hi Friends,
yesterday i installed the little system-monitoring-tool conky, which works great!
I wrote a little bash-script to show my current WAN-IP and added this script in the conky.config:
Script:
Quote:
#!/bin/bash
cd /tmp
wget -q checkip.dyndns.org && cat index.html |grep -Eo 'Current IP Address:*.*.*.*'|sed 's/<\/body><\/html>/ /'
rm index.html
|
Line in conky.config:
Quote:
${color #00ff00}${execi 300 /home/ganimo/sec/scripts/bash/ip.sh}
|
i restarted conky and the script worked, but after the IP-Address is also a little square:
How can i remove this? when i start the script in a shell, this square is not there?
I would be thankful for every answer.
ganimo