PDA

View Full Version : Execi wont work in conky



tomasvdmeer
April 30th, 2014, 11:54 PM
Conky:


${texeci 1 ~/ping.sh 8.8.8.8}


ping.sh


#!/bin/bash

if ping -c 1 -W 2 $1 > /dev/null; then
echo "Online!"
else
echo "Offline!"
fi


And still execi wont start. How can i fix it..