#!/bin/sh
# Adapted from conky_toggle_switch.sh by ETP 14th Sept 2020

if [ "`pidof conky 2>/dev/null`" ]; then
	killall conky &
else
	gtkdialog-splash -close never -timeout 2 -margin 10 -placement center -fontsize large -bg goldenrod -text " $(gettext 'Conky already off !') " &
fi
