#!/bin/bash

### We don't want conky to interfere ###
ps cax | grep conky > /dev/null

if [ $? == 0 ]; then
killall conky conky-git
/usr/bin/qwinwrap

else
/usr/bin/qwinwrap
fi

exit 0
