#!/bin/bash
# This small script renames the konsole tab to the current command

if [ "$KONSOLE_DCOP_SESSION" ]
then
    dcop `echo ${KONSOLE_DCOP_SESSION}` renameSession "$1"
fi

