Programming and Scripting :: just needed a place to stick this for later



#!/bin/sh

# click to start, click to stop

if pidof conky | grep [0-9] > /dev/null
then
exec killall conky
else
exec conky

fi


original here.