]> git.alrj.org Git - zsh.d.git/blob - wrappers/konsoleautowrap
de72cfd7b742a6ef9361e955ef8059b09b3a3e10
[zsh.d.git] / wrappers / konsoleautowrap
1 #! /usr/bin/zsh
2 # This small script renames the konsole tab to the commands' last argument
3
4 typeset -a args
5 cmd=`basename $0`
6 args=$@
7 lastarg="${args[(w)-1]}"
8 dcop ${KONSOLE_DCOP_SESSION} renameSession "$lastarg"
9 exec $cmd "$@"
10