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

if [ "$KONSOLE_DCOP_SESSION" ]
then
    dcop `echo ${KONSOLE_DCOP_SESSION}` renameSession "`echo $PWD | sed s,^$HOME,~,`"
fi

