#!/bin/bash if [ -f /tmp/xmms.lock ]; then killall xmms & rm -f /tmp/xmms.lock & else DISPLAY=:0.0 xmms & touch /tmp/xmms.lock & fi exit 0